Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEV Refactor and Add Features #14

Merged
merged 7 commits into from
Oct 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 49 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@

## Usage

NOTE: When you start a pentest, type the INIT command and define the target
### NOTE: When you start a pentest, type the INIT command and define the target, or write
### values in linux-evil-toolkit/config/letk.rb

### Basics

|exit | Close this script
|clear | Clear terminal
Expand All @@ -48,9 +51,7 @@
|INIT | Setup global variables
|reset | Clear terminal and reset global variables
|cover | Cover your tracks on your computer
|portscanner | This command is replaced by automap
|automap | Scanner target, grep ports, services, operational system,
| | firewall rules and more.
|simple_map | This command execute automap (auto namap)
|search | Search email, whois and banner grep
|status | Show machine status
|dnsscanner | Scan for 'A', 'AAAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA'
Expand All @@ -63,6 +64,40 @@
|test | For development only


### simple_scan options

alone

"-sL" --> "List Scan - simply list targets to scan"
"-sP" --> "Ping Scan - go no further than determining if host is online"

default

"-sS -sV" --> "TCP SYN"
"-sU -sV" --> "UDP Scan"

icmp_echo

"-sS -sV -PE" --> "TCP SYN + ICMP echo discovery probes"
"-sU -sV -PE" --> "UDP Scan + ICMP echo discovery probes"
"-sA -sV -PE" --> "ACK + ICMP echo discovery probes"

port_list

"-sS" --> "TCP SYN + [portlist]: TCP SYN discovery probes to given ports"
"-sA" --> "ACK + [portlist]: TCP ACK discovery probes to given ports"
"-sU" --> "UDP Scan + [portlist]: TCP UDP discovery probes to given ports"

special

"-sT -sV" --> "Connect()"
"-sW -sV" --> "Window"
"-sM -sV" --> "Maimon scans"
"-sN -sV" --> "TCP Null"
"-sF -sV" --> "FIN"
"-sX -sV" --> "Xmas scans"


## Backend Functions

### From engine module
Expand All @@ -77,13 +112,9 @@
Engine.status() | Show machine status
Engine.dns_scanner() | Scan for 'A', 'AAAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA'
Emgine.dir_scanner() | Brute force for search files and folders

### From Automap module

Automap.less_boring() | Execute automap host scan
Automap.assembly() | Backend function
Automap.exec() | Backend function

Engine.simple_scan() | Execute automap
Engine.assembly() | Backend function
Engine.exec() | Backend function

### From Visual module

Expand All @@ -92,12 +123,17 @@
Visual.linux_files() | Function for show text
Visual.linux_folders() | Function for show text
Visual.linux_util() | Function for show text


### From Interpreter Module

Interpreter.interpreter() | Backend function
Interpreter.main() | Backend function


### ERROR CODES & COLORS
## ERROR CODES & COLORS

prGreen() | Succesful
prRed() | Error
Other[Cyan, yellow] | Execultion error

### Donate
6 changes: 4 additions & 2 deletions config/letk.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CONFIG FILE FOR AUTOMATION
# Set time
$time = time = Time.now.strftime("%d-%m-%Y_%H-%M")
$time = Time.now.strftime("%d-%m-%Y_%H-%M")
# Write results in file?
$documentation = false
# Enable proxy
Expand All @@ -12,4 +12,6 @@
# automatically generate new ip. [true| false]
$silent_mode = false
# Change mac [true| false]
$change_mac = false
$change_mac = false
#Set network interface name: [wlan0, wlp2s0]: "
$interface = false
1 change: 1 addition & 0 deletions config/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ tmux
links
code
vim
srm
gedit
net-tools
adb
Expand Down
116 changes: 0 additions & 116 deletions modules/automap.rb

This file was deleted.

Loading