Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
10
Posts with Upvotes
7
Upvoting Members
8
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~210.70K People Reached
Favorite Tags

118 Posted Topics

Member Avatar for tony75

Hi When I run main.py I got this error how can I fix it? I'm using https://github.com/PicciMario/iPhone-Backup-Analyzer-2 / Traceback (most recent call last): File "./main.py", line 44, in <module> from PySide import QtCore, QtGui ImportError: No module named PySide I appreciate your help

Member Avatar for Andreas_7
0
22K
Member Avatar for tony75

Hi Try to extract password from my chrome browser but I got this error below How can I solve this problem? Traceback (most recent call last): File "Chromer.py", line 13, in <module> password = win32crypt.CryptUnprotectData(website_data[2], None, None, None, 0)[1] pywintypes.error: (13, 'CryptProtectData', 'The data is invalid.')

Member Avatar for rproffitt
0
347
Member Avatar for tony75
Member Avatar for Reverend Jim
0
416
Member Avatar for tony75

Hi How to read the second line in text file(MyData,txt) #MyData.txt line1 line2 line3 line4 line5 #read the second line f = open ("MyData.txt","r") for line in f: if line == 2: print line else: print "somthing wrong !" f.close()

Member Avatar for rproffitt
0
225
Member Avatar for tony75

Hi I have python code that can list all drive letters but now I need also list the name of drive letter (Label) and the size of hard drive like below! Ltr Label Size ---- ------ --------- C Windows 800 GB E Local Disk 200 GB F My Passport 500 …

Member Avatar for tony75
1
7K
Member Avatar for tony75

Hi I try to upload my picture to local server via FTP Batch file I created script.batch which is contain open 127.0.0.1 Tony 123abc #cd public_html lcd C:\xampp\htdocs lcd XAMPP Shared Folder binary mput C:\Users\Laptop\Desktop\XAMPP Shared Folder\AboutMe.jpg bye I have also another script(upload.batch) which is contain `ftp -i -s:script.bat` When …

0
367
Member Avatar for tony75

Hi Is there any simple way or online website that can convert The numerical string like"123-322-14365" to regular expression?

Member Avatar for Reverend Jim
0
445
Member Avatar for tony75

Hi I have 500GB WD my passport with bad sector, I try to take disk imaging for forensics investigation with ddrescue but ddrescue was very slowly, is it really take 131d 22h? Is there any command or way that I can use to speed up ddrescue and just take 8 …

Member Avatar for tony75
0
2K
Member Avatar for tony75

Hi I have a question? If you dump the RAM "internal memory" with dd to an image file, you get everything in memory or Will something be missing?

Member Avatar for rproffitt
0
1K
Member Avatar for tony75

Hi Please why I got this error(SQL Error: ORA-00907: missing right parenthesis) whats wrong in my code? CREATE TABLE artphoto( photonr NUMBER(10), artnr NUMBER(10) NOT NULL, filtyp VARCHAR2(5) NOT NULL, path VARCHAR2(100) NOT NULL, CONSTRAINT artphoto_photonr_pk PRIMARY KEY(photonr), CONSTRAINT artphoto_artnr_fk FOREIGEN KEY(artnr), REFERENCES art(artnr), CONSTRAINT artphoto_filtyp_ck CHECK(filtyp in ('gif','jpg')) ); …

Member Avatar for john_111
0
34K
Member Avatar for tony75
Member Avatar for tony75
0
6K
Member Avatar for tony75

HI There is many method to bypass Antivirus detection! The Best way is writing your own toolsespecailly using python language. My question is How to protect your self againt PE portable excuteble and how we make Antivirus to detect for example metasploit payloads? I will appriciate for yur help

Member Avatar for powerade661
0
447
Member Avatar for tony75

Hi How can I subnet this ip address? 100.20.10.0/24 Subnet A 2 hosts Subnet B 80 hosts http://puu.sh/l2ata/3b2d1e6d68.jpg I think my solution not correct! I appricate your help N ID Subnetmask First available Last available Broadcast 100.20.10.128 255.255.255.128 100.20.10.129 PC B 120.10.10.130 120.10.10.131 100.20.10.132 255.255.255.252 100.20.10.132 PC A 100.20.10.134 100.20.10.135 …

Member Avatar for mcglk
0
226
Member Avatar for tony75

Hi I got this error when I ran my scrip? import vidcap,time ImportError: No module named vidcap Where can I download the module?

Member Avatar for tony75
0
631
Member Avatar for tony75

Hi I have an python script send me log files and ip address from my PC-B Is it posssible to add functins that I can Remote uninstall (distance)my script from my PC-B? if yes how? any idea?

Member Avatar for rproffitt
0
373
Member Avatar for tony75

Hi I ran python script on my windows and I got this error below ,how can I fix it? I'm using python 2.7.3 from pyasn1.codec.der import decoder ImportError: No module named pyasn1.codec.der

Member Avatar for tony75
0
11K
Member Avatar for tony75

Hi How can I obfuscate my EXE program which is “compiled” with PyInstaller to avoid reverse engineer? My exe file contain my mail and password which is send me ip address and log files. The orginal script is .py python script. This code below I would like to obfuscate it,sender …

Member Avatar for Slavi
0
3K
Member Avatar for tony75

Hi My question about Ipv6 subnetting My address is 2001:db8:acad::/48 I have two subnet x and y and two pc How can I divide the address in 2 subnet and find link-local?

Member Avatar for tony75
0
197
Member Avatar for tony75

Hi I have an external hard drive its about 300 GB. I tried to recove my loose picture via testdisk but I couldn't because I got "Error Reading Sector" How can I fix "Error Reading Sector" I'll appreciate for your help

Member Avatar for mindmergepk
0
173
Member Avatar for tony75

Hi I have firewall.log file in my c:\ driver I wonder what destination IP adresses and 3 ports the scanner have attacked most in the attack. SELECT DISTINCT dst-ip FROM c:\firewall.log WHERE dst-port !!!! I apriciate your help

Member Avatar for pritaeas
0
148
Member Avatar for tony75

Hi I got this error ORA-01403 "no data found" and ORA-06512: at line 8 however I'm sure that there is date in my table dept!!! Declare v_deptid dept.deptid%type; v_deptname dept.deptname%type; v_location dept.location%type; v_employeeid dept.employeeid%type; begin select deptid, deptname, location, employeeid into v_deptid, v_deptname, v_location, v_employeeid from dept where deptname = …

Member Avatar for urtrivedi
0
246
Member Avatar for tony75

Hi Why I got error ? CREATE TABLE customer_table( KNR INTEGER(10) FN VARCHAR2(10) NOT NULL, EN VARCHAR2(10) NOT NULL, Mobil NUMBER(10) NOT NULL, Tell INTEGER(10) NOT NULL, constraint knr_pk primary key(KNR) ); Error report - 00907. 00000 - "missing right parenthesis" *Cause: *Action:

Member Avatar for tony75
0
681
Member Avatar for tony75

Hi What is my misstake? I got error whwn I run my code! DECLARE V_num number := ‘&enter_an_integer’; V_test number; Begin V_test := mod(V_num,2); If V_test = 0 then Dbms_output.put_line(’even number’) Else Dbms_output.put_line(‘odd numbers’); End if; End; The error was 06550. 00000 - "line %s, column %s:\n%s" *Cause: Usually a …

Member Avatar for tony75
0
179
Member Avatar for tony75

Hi When I run root@kali# volatility procdump -p 356 -f /root/Desktop/mydumps/myDump1.img I get this error Volatility Foundation Volatility Framework 2.4 ERROR : volatility.plugins.procdump: Please specify a dump directory (--dump-dir) Any one know how can I solve it? Im using kali linux I appreciate your help

Member Avatar for tony75
0
2K
Member Avatar for tony75

Why we use "Symbol” ?and why we downloading at installation while Debugging(WinDbg)? Whats is the advantage of "Symbol"?

Member Avatar for tony75
0
163
Member Avatar for tony75
Member Avatar for tony75
0
129
Member Avatar for tony75

Hi I have this key How can I add \x between two number of hex as you see in my example. f0cbf260e0ca8ec2431089fb393a1c29513aaaa5847d13e8be84760968e64dc6 Change to “\xf0\xcb\xf2\x60\xe0\xca\x8e\xc2\x43\x10\x89\xfb\x39\x3a\x1c\x29\x51\x3a\xaa\xa5\x84\x7d\x13\xe8\xbe\x84\x76\x09\x68\xe6\x4d\xc6” I appreciate your help

Member Avatar for EMERSON_1
0
10K
Member Avatar for tony75

Hi I think I need to help How can I know the Bitlocker version on my windows 7 ultimate? I appricate your help

Member Avatar for tony75
0
158
Member Avatar for tony75

Hi How can I install volatility 2.4 on ubuntu? [Click Here](http://www.volatilityfoundation.org/#!24/c12wa) Is there any debian packages?

Member Avatar for tony75
0
1K
Member Avatar for tony75

Hi I got this error when I mount truecrypt! mount: you must specify the filesystem type How can I fix it?

0
209
Member Avatar for tony75

Hi I wonder how to compile Truecrypt from source in linux or kali linux? I already downloadet the source code of TrueCrypt 7.1a Source.tar.gz here: https://www.grc.com/misc/truecrypt/truecrypt.htm I think we have also to download Cryptographic Token Interface $ wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11.h $ wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11f.h $ wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11t.h Anyone can do it step …

Member Avatar for rubberman
0
993
Member Avatar for tony75

Hi I like to compile Hyperion in kali linux but it seems command not found? How can I get the path and compile it? /usr/share/windows-binaries/Hyperion-1.0# ls Examples Fasm FasmAES-1.0 license.txt Makefile Obj readme.txt Src root@kali:/usr/share/windows-binaries/Hyperion-1.0# i586-mingw32msvc-g++ Src/Crypter/*.cpp -o hyperion.exe bash: i586-mingw32msvc-g++: command not found I appriciate your help

Member Avatar for tony75
0
385
Member Avatar for tony75

Hi How to merge two binary files into one in python and make them both execute. For example 1.exe+2.exe = OutPut3.exe when you run 3.exe both 1 and 2 execute def Main(): File_1 = raw_input("Location path of 1.exe:") File_2 = raw_input(" Location path of 2.exe:")

Member Avatar for tony75
0
2K
Member Avatar for tony75

Hi I wonder if there is any tools for linux that convert .bin dump to .dd or .img dump file? ..

Member Avatar for Gribouillis
0
7K
Member Avatar for tony75

Hi I installed a different version of Python but how to choose edit with IDLE to open scripts in python 2.7 or python 3.2 on my Windows desktop?

Member Avatar for tony75
0
431
Member Avatar for tony75

Hi How can I remove vsftpd on Kali linux? I used all commands but its not work? #apt-get remove vsftpd #sudo apt-get remove --auto-remove vsftpd #sudo apt-get purge vsftpd Any Help please

Member Avatar for matosha
0
2K
Member Avatar for tony75

Hi When I ran my assembly code in my Visual studio 2012 I got this error Error2 error MSB3721: The command "ml.exe /c /nologo /Sg /WX /Zi /Fo"Debug\Indexedaddressing.obj" /Fl"Proj.lst" /I "c:\Irvine" /W3 /errorReport:prompt /Ta..\ch03\Indexed_addressing.asm" exited with code 1. C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\BuildCustomizations\masm.targets 49 5 Proj Anyone know how can I fix …

0
114
Member Avatar for tony75

Hi I need create a program and add two variable and print out of the result of the function: WriteDec and place the result in eax before calling WriteDec. I wonder if I'm doing right? TITLE Add ; This program adds 32-bit unsigned INCLUDE Irvine32.inc .data val1 DWORD 10000h val2 …

Member Avatar for tony75
0
164
Member Avatar for tony75

Hi I try run this program(TestLib1.asm) [Click Here](https://github.com/mysteriouspants/SlopBukkit/blob/master/CS118/examples/ch05/TestLib1.asm) in my Visual Studio 2012 pro but I got errors I think the erros not in code I think in my Visual Studio 2012 configuration! Anyone know how can I fix it Error3 error LNK2005: _main@0 already defined in proj1.obj Error4 error …

Member Avatar for tony75
0
980
Member Avatar for tony75

Hi I need you recommendation to know about which crypto algorithm is good for protecting files which is stored in the DropBox?

Member Avatar for tony75
0
108
Member Avatar for tony75

HI What is the difference between the two payloads ”window/shell_reverse_tcp” and ”windows/shell/reverse_tcp”? I appreciate your help

Member Avatar for rubberman
0
601
Member Avatar for tony75

Hi I would like to learn how to code System Programming for windows via python(Python System Programming) Any tip or suggestion?where can I begin! Any recommend books,links and video tutorial? I appreciate your help

Member Avatar for slate
0
855
Member Avatar for tony75

Hi As we know we can make image of HD and Clone Hard Disks and Partitions with dd.exe(http://www.chrysocome.net/dd) but How can I re-create a bootable disk from a raw image dd format to a bootable and executable HD installation?which commands I have to use? I appreciate your help

Member Avatar for tony75
0
2K
Member Avatar for tony75

HI I need to copy .dll files in C:\Windows\system32\ which is found or match in my my_file.txt file to C:\tools folder. my code not work and need also to found words that can match my_file.txt. so for example I have RICHED20.dll in my my_file.txt if the same file name"RICHED20.dll" exist …

Member Avatar for snippsat
0
1K
Member Avatar for tony75

Hi How to hide my source code so to not be viewed? I think this line of code solve it but where can I put in my source code? <body oncontextmenu="return false"> </body> And This is my code <!doctype html> <html> <head> <meta charset="utf-8"> <title>HTML5</title> <meta name="description" content=""> <body oncontextmenu="return …

Member Avatar for tdrosiadis
0
4K
Member Avatar for tony75

Hi Please I need your help with this script. I have an logfile.xml and I need to picks the file names of the path but not duplicate and writes them into a bat file, like copy %windiw&\system32\<filename> %1% Output example for my .bat file should look like copy %windiw&\system32\ dbghelp.dll …

Member Avatar for tony75
0
1K
Member Avatar for Alex_24

Here is your Answer http://www.daniweb.com/software-development/python/threads/452547/how-to-install-pyhook-module-

Member Avatar for tony75
0
611
Member Avatar for tony75

Hi I’m working right now with computer forensics. I have an xml file which I have saved from Process Monitor . The file look like <?xml version="1.0" encoding="UTF-8"?> <Company>Sysinternals - www.sysinternals.com</Company> <module> <Timestamp>130412795960224800</Timestamp> <BaseAddress>0x6de80000</BaseAddress> <Size>24576</Size> <Path>C:\Windows\system32\Riched32.dll</Path> <Version>6.1.7600.16385 (win7_rtm.090713-1255)</Version> <Company>Microsoft Corporation</Company> <Description>Wrapper Dll for Richedit 1.0</Description> </module> <module> <Timestamp>130412795960224800</Timestamp> <BaseAddress>0x6f3b0000</BaseAddress> <Size>65536</Size> …

Member Avatar for tony75
0
499
Member Avatar for tony75

Hi I ‘m working with forensics tool Helix (helix.iso) right now (Incident Response), I would like to copy the necessary files And directories to the USB flash drive that is required to run helix.exe and programs Can be started via the Helix dialog window. I do not need also to …

Member Avatar for tony75
0
304
Member Avatar for tony75

Hi I got this error ImportError: No module named Crypto.Cipher Where can I find the module for windows and debian linux? How can I fix error both in windows and Linux? importerror no module named crypto.cipher windows Traceback (most recent call last): File "C:\Users\Win/\Desktop\client.py", line 2, in <module> from Crypto.Cipher …

Member Avatar for tony75
0
16K

The End.