search for: victim

Displaying 20 results from an estimated 492 matches for "victim".

2002 Nov 08
1
bug on openssh 3.5p1
Excuse me in advance for my poor english I have noted a small bug on OpenSSH 3.5p1. When user root is not permitted to log in a system (PermitRoot no) and a correct password is submitted for it to server, a RST packet is issued from server to client: [root at xxx root]# ssh victim root at victim's password: Permission denied, please try again. root at victim's password: Permission denied, please try again. ......... root at victim's password: Read from remote host 10.12.7.110: Connection reset by peer Connection to victim closed. tcpdump session: 12:17:32.65...
2010 Oct 25
2
[PATCH] Btrfs: allow subvol deletion by unprivileged user with -o user_subvol_rm_allowed
...node) +{ + uid_t fsuid = current_fsuid(); + + if (!(dir->i_mode & S_ISVTX)) + return 0; + if (inode->i_uid == fsuid) + return 0; + if (dir->i_uid == fsuid) + return 0; + return !capable(CAP_FOWNER); +} + +/* copy of may_delete in fs/namei.c() + * Check whether we can remove a link victim from directory dir, check + * whether the type of victim is right. + * 1. We can''t do it if dir is read-only (done in permission()) + * 2. We should have write and exec permissions on dir + * 3. We can''t remove anything from append-only dir + * 4. We can''t do anythin...
2012 Jan 05
13
[PATCH] xenpaging:add a new array to speed up page-in in xenpaging
...# User hongkaixing<hongkaixing@huawei.com> # Date 1325149704 -28800 # Node ID 052727b8165ce6e05002184ae894096214c8b537 # Parent 54a5e994a241a506900ee0e197bb42e5f1d8e759 xenpaging:add a new array to speed up page-in in xenpaging This patch adds a new array named page_out_index to reserve the victim''s index. When page in a page,it has to go through a for loop from 0 to num_pages to find the right page to read,and it costs much time in this loop.After adding the page_out_index array,it just reads the arrry to get the right page,and saves much time. The following is a xenpaging test on...
2006 Jul 23
2
constructing a dataframe from a database of newspaper articles
...rating since 1985, comprises three-yearly appointments of a Supreme Court judge and two assisting psychiatrists, whose advice does not have to be accepted. The judge alone constitutes the tribunal, an inquisitorial process conducted in the Supreme Court in Brisbane. TD Victims or family are not notified of hearings or allowed to submit victim impact statements. They are prohibited from talking to the media until 28 days after the decision. And when patients return to the community there is no requirement for neighbours or victims to be notifi...
2008 Apr 22
2
Multidimensional contingency tables
How does one ideally handle and display multidimenstional contingency tables in R v. 2.6.2? E.g.: > prob1<- data.frame(victim=c(rep('white',4),rep('black',4)), + perp=c(rep('white',2),rep('black',2),rep('white',2),rep('black',2)), + death=rep(c('yes','no'),4), count=c(19,132,11,52,0,9,6,97)) > prob1 victim perp death count 1 white white yes...
2003 Oct 23
3
/var partition overflow (due to spyware?) in FreeBSD default install
...his by itself couldn't explain all of the symptoms we were seeing. This afternoon, I examined the machines and discovered the problem: full /var partitions caused by huge /var/log/messages files. Inspection of the files reveals hundreds of thousands of messages of the form: Oct 23 16:00:07 victim named[326]: sysquery: no addrs found for root NS (ns0.opennic.glue) Oct 23 16:00:07 victim named[326]: sysquery: no addrs found for root NS (ns1.opennic.glue) Oct 23 16:00:07 victim named[326]: sysquery: no addrs found for root NS (ns3.opennic.glue) Oct 23 16:00:07 victim named[326]: sysquery: n...
2008 May 13
4
Trick user to send private key password to compromised host
Hi list, I do not known, if this is really an issue but i noticed that when connecting to a remote ssh host with the standard linux openssh client using a private key, that there is no line of text indicating when the local key-passwd process was completed and the connection session was established. On a compromised host, the login shell could write the line 'Enter passphrase for key
2007 Jul 03
4
Weird rate in HTB
Dear all, First, sorry for my bad English .. To night one of my client is the victim of UDP attack from internet. It''s tons of UDP packets from internet with destination to port 80. But when I look at class of that victim client, the actual class rate is over than configured rate class. Below is my screen capture. You can see at class 1:913 which have actual rate 10...
2011 Sep 28
2
event channel in xenpaging
...tween dom0 and xen instead of IDC between dom0 and domU? 2)In your latest patch,[PATCH 9 of 9] xenpaging: watch the domains /xenpaging/num_pages xenstore value.I found some problems. a、In main(),you put the page_out process into while(1) and make the following change. if ( interrupted ) victims[i].gfn = INVALID_MFN; - else - evict_victim(paging, &victims[i], fd, i); I think the" if ( interrupted )" should remove here.Because once handling page_in requests,the related victims slot should clear, then in evict_pages we can populate new page in this slot because in evic...
2019 Sep 03
3
dsync and altpath on shared storage.
...<dovecot at dovecot.org> wrote: ... >> Is there anyway for dsync to avoid moving Gigabytes of data for could >> just be "moved" by moving the mount? > > > Not tested but you can probably do something like this in the target server: > > doveadm backup -u victim -R ssh sudouser at old-server "sudo doveadm dsync-server -o mail_location=sdbox:/location-to-your-sdbox/ -u victim" > > just leave ALT storage path from the setting. I'll have to test this... but my initial guess would be that doveadm would then think the mails has disappeare...
2001 Oct 09
0
Bug in Linux 2.4 / iptables MAC match module (fwd)
...n be generated by the Unix command 'ping somehost -s 4', or similarly under Windows with 'ping somehost -l 4'. Netcat with the -u option can generate small UDP packets which exhibit the same problem. REPRODUCTION ------------ To reproduce the problem, you will need 2 machines: - Victim, which runs iptables. - Attacker, which can generate small ICMP or UDP packets. We have used the DNS names 'Victim' and 'Attacker' to represent the IP addresses of these machines, and AT:TA:CK:ER:00:00 as the MAC address of the attacker. Please substitute real values if attempting...
2012 Jan 05
3
[PATCH 0 of 2] xenpaging:speed up page-in
The following two patches are about how to speed up in xenpaging when page in pages. On suse11-64 with 4G memory,if we page out 2G pages,it will cost about 15.5 seconds, but take 2088 seconds to finish paging in.If page-in costs too much time,it will cause unmesurable problems when vm or dom0 access the paged_out page,such as BSOD,crash. What鈥檚 more,the dom0 is always in high I/O pressure.
2006 Feb 07
1
Dag - Victim of burglary
Last thursday ( Feb 2nd ) Dag's place was broken into a significant amount of hardware was taken, along with other valuables. You can see the details posted by Dag at http://lists.freshrpms.net/pipermail/freshrpms-list/2006-February/013868.html We all know the excellent work he has done for the entire linux community over the years, and specifically his continued support for the CentOS
2019 Dec 03
2
Dovecot 2.3.8 - How to force index creation for user/mailbox?
...to index: > > doveadm -vvv force-resync -u user 'Folder' > > > > Is there any way to use doveadm tool to create/fix index? Shouldn't the > index be updated on each email arrival? > > > > Cheers, > > TomekL > > Try first 'doveadm fetch -u victim body ALL'. If this does not produce any > useful results, try 'doveadm force-resync -u victim "*"'. > > Aki > -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://dovecot.org/pipermail/dovecot/attachments/20191203/c8b3482e/att...
2018 Jan 10
2
Doveadm field for message body without attachments
Happy new year to all, what is the message field in doveadm data model representing the body without attachments? I need to dump the message body without the attachments so as to avoid unnecessary size of the exported files and while I am also not interested in this part of the message. with kind regards Athanasios
2019 Sep 02
2
dsync and altpath on shared storage.
Hi, I was wondering... If one had mdbox ALT path set to a shared storage mount (say, on NFS) and one wanted to move a mailbox to a different host... I guess it in principle wouldn't be necessary to copy all the ALT storage through dsync, when the volume could just be mounted on the new host. Is there anyway for dsync to avoid moving Gigabytes of data for could just be "moved" by
2009 Jun 10
1
Analisys in Multidimensional contingency tables
...contingency tables using R. I' working with the Agresti example where you have the data from 3 categories. The thing is how can I do the analisys using the G2 statistics. Somebody can send me an Idea? I attach the program where you can find the data. Best Regards, > prob1<- data.frame(victim=c(rep('white',4),rep('black',4)), + perp=c(rep('white',2),rep('black',2),rep('white',2),rep('black',2)), + death=rep(c('yes','no'),4), count=c(19,132,11,52,0,9,6,97)) > prob1 victim perp death count 1 white white yes 19 2...
2002 Oct 09
1
Multiple plots
...That's nice but I am supposed to do? rm(list=ls()) # what's wrong with underscore? #getwd("/home/matej/docs/skola/stat\_anal-cj3534/assign01/") load("assign01.RData") postscript("assign01.eps",onefile=FALSE) plot(itg$WFemale,xlab="Number of victims",\ ylab="Frequencies",col="blue",main="Intimate Homicide\ Victims",type="l") plot(itg$WMale,add=FALSE,axes=FALSE,col="red",type="l") quit(save="no") Please, be patient with me, I am really newbie, and although it is pr...
2010 Oct 03
3
SIP flood attacK
Hello all. I was recently the victim of a SIP flood attack. I'm wondering what is the best method to prevent such things in the future. Many thanks Greg -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20101003/2e254523/attachment.htm
2016 Jun 02
6
Delete remote folder
Hi I'm trying to build a backup system based on rsync. It should work with different destinations (local, share, remote etc) that's why I'm looking for ways how every operation can be controlled from the client side. I want to create full backups and incremental backups. For the incremental backups I use --compare-dest lastfullbackup. This works nicely except that the whole directory