Code Monkey home page Code Monkey logo

icu's Introduction

ICU (I see you)

Collection of tools, guides and examples that I use in my everyday for penetration testing

Setup Tips


Good Sites

#!/bin/bash

##################
# Starter script #
##################

# Add local machines IP
$ export vm0=xxx.xxx.xxx.xxx

# Find other machines quickly
$ arp-scan xxx.xxx.xxx.0/24

# Add VM's to system variables list for easier referencing
$ export vm1=xxx.xxx.xxx.xxx

# Very Fast common port scanner with Netcat
$ netcat -v -z -n -w 1 $vm1 1-1023 > nc_fast_$vm1.txt 2>&1

# Quick TCP Enumeration with a Banner grab out to file
$ nmap -oN nmap_banner_$vm1.txt -sV -sT -p 1-65535 -A -T4 $vm1

# Active NMAP out to file
$ nmap -oN nmap_active_connect_$vm1.txt -p1-65535 -A -T5 -sT $vm1

# dirb scan output to file and grep the interesting items (Code 200's)
$ dirb http://$vm1 -o dirb_scan_$vm1.txt
$ cat dirb_scan_$vm1.txt | grep CODE:200 > dirb_scan_200_filtered_$vm1.txt
$ cat dirb_scan_$vm1.txt | grep CODE: | grep -v SIZE:0 > dirb_scan_filtered_$vm1.txt

Quick Lists


Information Gathering


Port & Service Scanning

Sniffing & Spoofing


Community Lists


Links


Just for Fun

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.