i downloaded a hacking tool rar file from torrent and there were few trojans in it like love letter etc. But it is hard for me to attach these trojans to a txt doc or to a photograph.
can you guys help me?
how to attach a trojan file to a .txt or to a .jpeg file?
-
- Posts: 15
- Joined: Wed Jul 14, 2010 8:53 pm
A bit of python code to append a file onto another, works every time:
Code: Select all
input_filename = "me naked.jpg"
payload = "BackDoor"
output_filename = "me extra naked.jpg"
open( output_filename, "wb" ).write( open( input_filename, "rb" ).read() + open( payload, "rb" ).read())
Could you explain me how it work? Can I somehow to put my trojan into txt?CodeX wrote:A bit of python code to append a file onto another, works every time:Code: Select all
input_filename = "me naked.jpg" payload = "BackDoor" output_filename = "me extra naked.jpg" open( output_filename, "wb" ).write( open( input_filename, "rb" ).read() + open( payload, "rb" ).read())
Volim ovu igru nema nista draze i evo tu da me seces ako te ista lazem.
I love this game and there's nothing to compare.
I love this game and there's nothing to compare.
-
- Posts: 106
- Joined: Thu Oct 29, 2009 9:21 pm
Worked for me on my last ex-girlfriend.CodeX wrote:A bit of python code to append a file onto another, works every time:Code: Select all
input_filename = "me naked.jpg" payload = "BackDoor" output_filename = "me extra naked.jpg" open( output_filename, "wb" ).write( open( input_filename, "rb" ).read() + open( payload, "rb" ).read())