Skip to content

Commit

Permalink
Reorganized
Browse files Browse the repository at this point in the history
  • Loading branch information
Mari Wahl committed Nov 3, 2014
1 parent ab54dc8 commit 2afd831
Show file tree
Hide file tree
Showing 281 changed files with 251 additions and 31 deletions.
16 changes: 13 additions & 3 deletions CTFs_and_WarGames/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
CTFs Archives
==============
CTFs & Wargames Archives
========================

* CSAW 2014
## 2014


### CTFs
- ASIS Final
- CSAW Quals
- Hack.lu


### Wargames
- OverTheWire: Krypton, Narnia

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
83 changes: 70 additions & 13 deletions Cryptography/README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,82 @@
# TOOLS:
# Cryptography

- https://www.cryptool.org/en/cryptool1-en

- frequency analyses online:
http:https://www.simonsingh.net/The_Black_Chamber/hintsandtips.html
http:https://www.xarg.org/tools/caesar-cipher/

## MD5

## ROT13

In the command line
### Scripts

- Hash length extension attack
- Brute force hex digest chars



------

## SHA


### Scripts
- SHA-256 brute force


--------

## Rotation Ciphers


### Scripts
- Caesar
- Brute force rotation
- Pygenere
- Frequency analysis


### Online tools:

- Frequency analysis: [here](http:https://www.simonsingh.net/The_Black_Chamber/hintsandtips.html) and [here](http:https://www.xarg.org/tools/caesar-cipher)

### In the command line

```sh
$ VAR=$(cat data.txt)
$ echo "$VAR"
$ alias rot13="tr A-Za-z N-ZA-Mn-za-m"
$ echo "$VAR" | rot13
```
VAR=$(cat data.txt)
echo "$VAR"
alias rot13="tr A-Za-z N-ZA-Mn-za-m"
echo "$VAR" | rot13
### In Python

In Python [we can use decoding](https://docs.python.org/2/library/codecs.html#codec-base-classes):

```python
"YRIRY GJB CNFFJBEQ EBGGRA".decode(encoding="ROT13")
```
----

## Pailier Cryptosystem

### Scripts

In Python we can use: ```"YRIRY GJB CNFFJBEQ EBGGRA".decode(encoding="ROT13")```
https://docs.python.org/2/library/codecs.html#codec-base-classes
- POC
- Primes

---

## Tools

### Scripts:

- Finding GDC
- Finding if prime
- Generate prime
- Quick Select
- XORtool


### Online

- [Cryptol](https://www.cryptool.org/en/cryptool1-en)

-----

File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions Forensics/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Forensics


## Tools

### Scripts:

- memdump
- pdfid
- pdf-parser

12 changes: 12 additions & 0 deletions Linux_Hacking/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Linux Hacking

## SSH Hacking

- getting unencrypted ssh keys from memory


----
## Shellshock

- scripts
- POCs
File renamed without changes.
File renamed without changes
File renamed without changes.
Submodule shellshocker-pocs updated from 000000 to 3a4706
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions Memory_Exploits/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Memory Exploits

## Assembly

- Shell spawn


----
## Buffer Overflows

- Stack overflow examples

----
## Integer Overflows

---
## Tools

---
## C-codes

- Get env variable
File renamed without changes.
File renamed without changes.
24 changes: 24 additions & 0 deletions Network_and_802.11/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Network and 802.11

## 802.11

- Cracking linksys
- Cracking wifi: WEP, WPA, WPA2-PSK

---

## Wireshark stuff

- Shark the ripper
- Useful commands

---
## Port Knocking

- Several scripts

---
## Netcat, Telnet, Sockets

- Example scripts

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
# Useful

## Recon

Expand Down
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions Other_Hackings/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# OTHER HACKINGS

## Facebook Hacking

- Bday thanks
- Delete all comments and likes

## Useful scripts

- Binary dot symbols
- Bits to char
- Bytes to char
- Final word inside text
- untar bz2
- watch dir change

## Useful lists

- primes to 100k
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
# CTFs, Wargames, Gray Hacker & PenTesting
# My-Gray-Hacker-Resources

All in one big bag. For fun, profits, or CTFs.


## * CTFs and WARGAMES
## * CRYPTOGRAPHY
## * FORENSICS
## * LINUX HACKING
## * MEMORY EXPLOITS
## * NETWORK and 802.11
## * REVERSE ENGINEERING
## * RUBBER DUCK
## * STEGANOGRAPHY
## * WEB EXPLOITS
## * OTHER HACKINGS

All in one big bag.


[here]: https://gist.github.com/bt3gl/8e3aa9538d6122f74274

![](http:https://i.imgur.com/4WNqTJS.png)
File renamed without changes.
43 changes: 32 additions & 11 deletions Reverse_Engineering/README.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,60 @@
# Tools
# Reverse Engineering


-------------

## Tools

- X86 Win32 Cheat sheet
- Intro X86
- base conversion
- Command line tricks

### Online References

[Reverse Engineering, the Book]: http:https://beginners.re/


# Dissasembly
----

## IDA

- Cheat sheet


-------------

## GDB

- Commands and cheat sheet



#### gdb
```
```sh
$ gcc -ggdb -o <filename> <filename>.c

```

Starting with some commands:
```
```sh
$ gdb <program name> -x <command file>
```

For example:
```
```sh
$ cat command.txt
```
set disassembly-flavor intel
disas main
```


#### objdump

Display information from object files:
• Where object file can be an intermediate file
created during compilation but before linking, or a
fully linked executable
Display information from object files: Where object file can be an intermediate file
created during compilation but before linking, or a fully linked executable

```
```sh
$ objdump -d <bin>
```

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
8 changes: 8 additions & 0 deletions Steganography/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Steganography


## Images

- Adding two images
- xor_bytes
- color crypto
23 changes: 23 additions & 0 deletions Web_Exploits/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Web Exploits

## OS Command Injection

## SQLi

- Brute force password
- Timed SQLi
- Cookie force brute

## PHP Shells

- php primer
- xor
- exploits

## Scanners

- heartbleed

## User ID
- cookie auth
- user id
File renamed without changes.

0 comments on commit 2afd831

Please sign in to comment.