Displaying 5 results from an estimated 5 matches for "check_cal".
Did you mean:
check_call
2017 Apr 14
4
rsync buffer overflow detected
...import os
import subprocess
F = 'test'
OPENS = 1600
cmd = [
#'gdb', '--args',
'./rsync',
'-aviH',
'/etc/passwd',
'/tmp/passwd'
]
for i in xrange(OPENS):
fd = os.open(F, os.O_WRONLY | os.O_CREAT)
print(cmd)
subprocess.check_call(cmd)
I rebuild rsync-3.1.1 from Debian source with debug and -O1 and get bt from gdb:
(gdb) bt
#0 0x00007ffff7859067 in __GI_raise (sig=sig at entry=6) at
../nptl/sysdeps/unix/sysv/linux/raise.c:56
#1 0x00007ffff785a448 in __GI_abort () at abort.c:89
#2 0x00007ffff78971b4 in __libc_message (do...
2019 Oct 04
2
samba-tool user syncpasswords crashes with python3
the script works...
root at probe28:~# cat test.dat
dn: CN=userxxxx,OU=Users,OU=xxxxx,OU=Organizations,DC=xxxxx,DC=xxxxx
proxyAddresses: SMTP:xxxxx.xxxxx at xxxxx.org
objectGUID: 637f4e70-8c1e-4e89-a6fc-82d525e584f2
pwdLastSet: 0
objectSid: S-1-5-21-1608159440-4144762864-1017073214-27184
sAMAccountName: userxxxx
mail: xxxxx.xxxxx at xxxxx.xxxxx
userAccountControl: 514
virtualClearTextUTF8::
2019 Oct 07
1
samba-tool user syncpasswords crashes with python3
...mand_p.communicate(input)[0], encoding =
> 'utf-8')
>
> After that 'subprocess.py' is called and the error seems to coming
> from
> there. Samba doesn't import all of 'subprocess', it only does this:
> from
> subprocess import Popen, PIPE, STDOUT, check_call, CalledProcessError
>
> The error output goes on to do this:
>
> File "/usr/lib/python3.6/subprocess.py", line 863, in communicate
> stdout, stderr = self._communicate(input, endtime, timeout)
> File "/usr/lib/python3.6/subprocess.py", line 1519,...
2017 Apr 16
0
Aw: rsync buffer overflow detected
...> cmd = [
> #'gdb', '--args',
> './rsync',
> '-aviH',
> '/etc/passwd',
> '/tmp/passwd'
> ]
>
> for i in xrange(OPENS):
> fd = os.open(F, os.O_WRONLY | os.O_CREAT)
> print(cmd)
> subprocess.check_call(cmd)
>
> I rebuild rsync-3.1.1 from Debian source with debug and -O1 and get bt from gdb:
> (gdb) bt
> #0 0x00007ffff7859067 in __GI_raise (sig=sig at entry=6) at
> ../nptl/sysdeps/unix/sysv/linux/raise.c:56
> #1 0x00007ffff785a448 in __GI_abort () at abort.c:89
> #2 0x000...
2007 Aug 10
0
Wine release 0.9.43
...binding.
urlmon/tests: Keep track of download state in tests.
urlmon/tests: Add test for binding to a URL from which a very short response is received.
urlmon/tests: Fix clipformat test.
urlmon: Do not use BindToStorage_hack for INTERNET_SCHEME_HTTP.
urlmon/tests: Call CHECK_CALLED(OnProgress_SENDINGREQUEST) for FILE_TEST since we SET_EXPECT it.
Nigel Liang (8):
winecfg: Add trackbar to set screen resolution in graphics tab.
winecfg: Add menu font settings to desktop integration tab.
winecfg: Read/write registry in unicode.
winecfg: Remove bad defa...