β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Execution logging and tracing :
π¦ Wireshark - A free and open-source packet analyzer
π¦ tcpdump - A powerful command-line packet analyzer; and libpcap, a portable C/C++ library for network traffic capture
π¦ mitmproxy - An interactive, SSL-capable man-in-the-middle proxy for HTTP with a console interface
π¦ Charles Proxy - A cross-platform GUI web debugging proxy to view intercepted HTTP and HTTPS/SSL live traffic
π¦ usbmon - USB capture for Linux.
π¦ USBPcap - USB capture for Windows.
π¦ dynStruct - structures recovery via dynamic instrumentation.
π¦ drltrace - shared library calls tracing.
@UndercodeTesting
git sources
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Execution logging and tracing :
π¦ Wireshark - A free and open-source packet analyzer
π¦ tcpdump - A powerful command-line packet analyzer; and libpcap, a portable C/C++ library for network traffic capture
π¦ mitmproxy - An interactive, SSL-capable man-in-the-middle proxy for HTTP with a console interface
π¦ Charles Proxy - A cross-platform GUI web debugging proxy to view intercepted HTTP and HTTPS/SSL live traffic
π¦ usbmon - USB capture for Linux.
π¦ USBPcap - USB capture for Windows.
π¦ dynStruct - structures recovery via dynamic instrumentation.
π¦ drltrace - shared library calls tracing.
@UndercodeTesting
git sources
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
www.tcpdump.org
Home | TCPDUMP & LIBPCAP
Web site of Tcpdump and Libpcap
Forwarded from Backup Legal Mega
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Core Technology-Code Example :
EXPERT HACKING BY UNDERCODE :
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/
/* 1 */
#define KERNEL
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/tty.h>
#include <linux/signal.h>
#include <linux/errno.h>
#include <linux/malloc.h>
#include <asm/io.h>
#include <asm/segment.h>
#include <asm/system.h>
#include <asm/irq.h>
#include "tdd.h"
/* 2 */
static int tdd_trace;
static int write_busy;
static int read_busy;
static struct tdd_buf *qhead;
static struct tdd_buf *qtail;
/* 3 */
static int tdd_read(struct inode *, struct file *, char *, int);
static int tdd_write(struct inode *, struct file *, char *, int);
static int tdd_ioctl(struct inode *, struct file *, unsigned int,
unsigned long);
static int tdd_open(struct inode *, struct file *);
static void tdd_release(struct inode *, struct file *);
extern void console_print(char *);
struct file_operations tdd_fops =
{
NULL,
tdd_read,
tdd_write,
NULL,
NULL,
tdd_ioctl,
NULL,
tdd_open,
tdd_release,
NULL,
NULL,
NULL,
NULL
};
]
init.c
/*******************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/
void tdd_init(void)
{
tdd_trace = TRUE;
if (register_chrdev(30, "tdd", &tdd_fops))
TRACE_TXT("Cannot register tdd driver as major device 30")
else
TRACE_TXT("Tiny device driver registered successfully")
--------------------------------------------------------------------------------
newthread
/*******************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
***********************************************************************/
new_thread(int (*start_addr)(void), int stack_size)
{
struct context *ptr;
int esp;
/* 1 */
if (!(ptr = (struct context *)malloc(sizeof(struct context))))
return 0;
/* 2 */
if (!(ptr->stack = (char *)malloc(stack_size)))
return 0;
/* 3 */
esp = (int)(ptr->stack+(stack_size-4));
*(int *)esp = (int)exit_thread;
*(int *)(esp-4) = (int)start_addr;
*(int *)(esp-icon_cool.gif = esp-4;
ptr->ebp = esp-8;
π¦Core Technology-Code Example :
EXPERT HACKING BY UNDERCODE :
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/
/* 1 */
#define KERNEL
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/tty.h>
#include <linux/signal.h>
#include <linux/errno.h>
#include <linux/malloc.h>
#include <asm/io.h>
#include <asm/segment.h>
#include <asm/system.h>
#include <asm/irq.h>
#include "tdd.h"
/* 2 */
static int tdd_trace;
static int write_busy;
static int read_busy;
static struct tdd_buf *qhead;
static struct tdd_buf *qtail;
/* 3 */
static int tdd_read(struct inode *, struct file *, char *, int);
static int tdd_write(struct inode *, struct file *, char *, int);
static int tdd_ioctl(struct inode *, struct file *, unsigned int,
unsigned long);
static int tdd_open(struct inode *, struct file *);
static void tdd_release(struct inode *, struct file *);
extern void console_print(char *);
struct file_operations tdd_fops =
{
NULL,
tdd_read,
tdd_write,
NULL,
NULL,
tdd_ioctl,
NULL,
tdd_open,
tdd_release,
NULL,
NULL,
NULL,
NULL
};
]
init.c
/*******************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/
void tdd_init(void)
{
tdd_trace = TRUE;
if (register_chrdev(30, "tdd", &tdd_fops))
TRACE_TXT("Cannot register tdd driver as major device 30")
else
TRACE_TXT("Tiny device driver registered successfully")
--------------------------------------------------------------------------------
newthread
/*******************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
***********************************************************************/
new_thread(int (*start_addr)(void), int stack_size)
{
struct context *ptr;
int esp;
/* 1 */
if (!(ptr = (struct context *)malloc(sizeof(struct context))))
return 0;
/* 2 */
if (!(ptr->stack = (char *)malloc(stack_size)))
return 0;
/* 3 */
esp = (int)(ptr->stack+(stack_size-4));
*(int *)esp = (int)exit_thread;
*(int *)(esp-4) = (int)start_addr;
*(int *)(esp-icon_cool.gif = esp-4;
ptr->ebp = esp-8;
Forwarded from Backup Legal Mega
/* 4 */
if (thread_count++)
{
/* 5 */
ptr->next = current->next;
ptr->prev = current;
current->next->prev = ptr;
current->next = ptr;
}
else
{
/* 6 */
ptr->next = ptr;
ptr->prev = ptr;
current = ptr;
switch_context(&main_thread, current);
}
return 1;
}
--------------------------------------------------------------------------------
exitthead
/*******************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/
static exit_thread(void)
{
struct context dump, *ptr;
/* 1 */
if (--thread_count)
{
/* 2 */
ptr = current;
current->prev->next = current->next;
current->next->prev = current->prev;
current = current->next;
free(ptr->stack);
free(ptr);
switch_context(&dump, current);
}
else
{
/* 3 */
free(current->stack);
free(current);
switch_context(&dump, &main_thread);
}
}
getchannel
/*******************************************************
written by @Undercoder
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
if (thread_count++)
{
/* 5 */
ptr->next = current->next;
ptr->prev = current;
current->next->prev = ptr;
current->next = ptr;
}
else
{
/* 6 */
ptr->next = ptr;
ptr->prev = ptr;
current = ptr;
switch_context(&main_thread, current);
}
return 1;
}
--------------------------------------------------------------------------------
exitthead
/*******************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/
static exit_thread(void)
{
struct context dump, *ptr;
/* 1 */
if (--thread_count)
{
/* 2 */
ptr = current;
current->prev->next = current->next;
current->next->prev = current->prev;
current = current->next;
free(ptr->stack);
free(ptr);
switch_context(&dump, current);
}
else
{
/* 3 */
free(current->stack);
free(current);
switch_context(&dump, &main_thread);
}
}
getchannel
/*******************************************************
written by @Undercoder
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Forwarded from iUNDERCODE - iOs JAILBREAK & MODS
Telegram
iUNDERCODE - iOs JAILBREAK & MODS
WELCOME TO iUNDERCODE CHANNEL FOR iOS UPDATES | TIPS | IPA & much more..
iUndercode.com
@UndercodeTesting @iUndercode @Dailycve @UndercodeNews
Follow us :
youtube.com/undercode
instagram.com/iUndercode
fb.com/iUndercode
Twitter.com/iUndercode
iUndercode.com
@UndercodeTesting @iUndercode @Dailycve @UndercodeNews
Follow us :
youtube.com/undercode
instagram.com/iUndercode
fb.com/iUndercode
Twitter.com/iUndercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 Hex editors :
π¦ HxD - A hex editor which, additionally to raw disk editing and modifying of main memory (RAM), handles files of any size
π¦ WinHex - A hexadecimal editor, helpful in the realm of computer forensics, data recovery, low-level data processing, and IT security
π¦ wxHexEditor
π¦ Synalize It/Hexinator -
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 Hex editors :
π¦ HxD - A hex editor which, additionally to raw disk editing and modifying of main memory (RAM), handles files of any size
π¦ WinHex - A hexadecimal editor, helpful in the realm of computer forensics, data recovery, low-level data processing, and IT security
π¦ wxHexEditor
π¦ Synalize It/Hexinator -
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
mh-nexus.de
HxD - Freeware Hex Editor and Disk Editor | mh-nexus
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
USEFULL TOOLS FOR PRO HACKERS :
π¦ Binwalk - Detects signatures, unpacks archives, visualizes entropy.
π¦ Veles - a visualizer for statistical properties of blobs.
π¦ Kaitai Struct - a DSL for creating parsers in a variety of programming languages. The Web IDE is particulary useful fir reverse-engineering.
π¦ Protobuf inspector
π¦ DarunGrim - executable differ.
π¦ DBeaver - a DB editor.
π¦ Dependencies - a FOSS replacement to Dependency Walker.
π¦ PEview - A quick and easy way to view the structure and content of 32-bit Portable Executable (PE) and Component Object File Format (COFF) files
π¦ BinText - A small, very fast and powerful text extractor that will be of particular interest to programmers.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
USEFULL TOOLS FOR PRO HACKERS :
π¦ Binwalk - Detects signatures, unpacks archives, visualizes entropy.
π¦ Veles - a visualizer for statistical properties of blobs.
π¦ Kaitai Struct - a DSL for creating parsers in a variety of programming languages. The Web IDE is particulary useful fir reverse-engineering.
π¦ Protobuf inspector
π¦ DarunGrim - executable differ.
π¦ DBeaver - a DB editor.
π¦ Dependencies - a FOSS replacement to Dependency Walker.
π¦ PEview - A quick and easy way to view the structure and content of 32-bit Portable Executable (PE) and Component Object File Format (COFF) files
π¦ BinText - A small, very fast and powerful text extractor that will be of particular interest to programmers.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - ReFirmLabs/binwalk: Firmware Analysis Tool
Firmware Analysis Tool. Contribute to ReFirmLabs/binwalk development by creating an account on GitHub.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
USEFULL TOOLS FOR PRO HACKERS :
π¦ Binwalk - Detects signatures, unpacks archives, visualizes entropy.
π¦ Veles - a visualizer for statistical properties of blobs.
π¦ Kaitai Struct - a DSL for creating parsers in a variety of programming languages. The Web IDE is particulary useful fir reverse-engineering.
π¦ Protobuf inspector
π¦ DarunGrim - executable differ.
π¦ DBeaver - a DB editor.
π¦ Dependencies - a FOSS replacement to Dependency Walker.
π¦ PEview - A quick and easy way to view the structure and content of 32-bit Portable Executable (PE) and Component Object File Format (COFF) files
π¦ BinText - A small, very fast and powerful text extractor that will be of particular interest to programmers.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
USEFULL TOOLS FOR PRO HACKERS :
π¦ Binwalk - Detects signatures, unpacks archives, visualizes entropy.
π¦ Veles - a visualizer for statistical properties of blobs.
π¦ Kaitai Struct - a DSL for creating parsers in a variety of programming languages. The Web IDE is particulary useful fir reverse-engineering.
π¦ Protobuf inspector
π¦ DarunGrim - executable differ.
π¦ DBeaver - a DB editor.
π¦ Dependencies - a FOSS replacement to Dependency Walker.
π¦ PEview - A quick and easy way to view the structure and content of 32-bit Portable Executable (PE) and Component Object File Format (COFF) files
π¦ BinText - A small, very fast and powerful text extractor that will be of particular interest to programmers.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - ReFirmLabs/binwalk: Firmware Analysis Tool
Firmware Analysis Tool. Contribute to ReFirmLabs/binwalk development by creating an account on GitHub.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 Web Hacking tools :
> source git
π¦ Spyse - Data gathering service that collects web info using OSINT. Provided info: IPv4 hosts, domains/whois, ports/banners/protocols, technologies, OS, AS, maintains huge SSL/TLS DB, and more... All the data is stored in its own database allowing get the data without scanning.
π¦ sqlmap - Automatic SQL injection and database takeover tool
π¦ NoSQLMap - Automated NoSQL database enumeration and web application exploitation tool.
π¦ tools.web-max.ca - base64 base85 md4,5 hash, sha1 hash encoding/decoding
π¦ VHostScan - A virtual host scanner that performs reverse lookups, can be used with pivot tools, detect catch-all scenarios, aliases and dynamic default pages.
π¦ SubFinder - SubFinder is a subdomain discovery tool that discovers valid subdomains for any target using passive online sources.
π¦ Findsubdomains - A subdomains discovery tool that collects all possible subdomains from open source internet and validates them through various tools to provide accurate results.
π¦ badtouch - Scriptable network authentication cracker
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 Web Hacking tools :
> source git
π¦ Spyse - Data gathering service that collects web info using OSINT. Provided info: IPv4 hosts, domains/whois, ports/banners/protocols, technologies, OS, AS, maintains huge SSL/TLS DB, and more... All the data is stored in its own database allowing get the data without scanning.
π¦ sqlmap - Automatic SQL injection and database takeover tool
π¦ NoSQLMap - Automated NoSQL database enumeration and web application exploitation tool.
π¦ tools.web-max.ca - base64 base85 md4,5 hash, sha1 hash encoding/decoding
π¦ VHostScan - A virtual host scanner that performs reverse lookups, can be used with pivot tools, detect catch-all scenarios, aliases and dynamic default pages.
π¦ SubFinder - SubFinder is a subdomain discovery tool that discovers valid subdomains for any target using passive online sources.
π¦ Findsubdomains - A subdomains discovery tool that collects all possible subdomains from open source internet and validates them through various tools to provide accurate results.
π¦ badtouch - Scriptable network authentication cracker
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦2020 Hacking Network TOP RATED TOOLS :
>SOURCE GIT
π¦ NetworkMiner - A Network Forensic Analysis Tool (NFAT)
π¦ Paros - A Java-based HTTP/HTTPS proxy for assessing web application vulnerability
π¦ pig - A Linux packet crafting tool
π¦ findsubdomains - really fast subdomains scanning service that has much greater opportunities than simple subs finder(works using OSINT).
π¦ cirt-fuzzer - A simple TCP/UDP protocol fuzzer.
π¦ ASlookup - a useful tool for exploring autonomous systems and all related info (CIDR, ASN, Org...)
π¦ ZAP - The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications
π¦ mitmsocks4j - Man-in-the-middle SOCKS Proxy for Java
π¦ ssh-mitm - An SSH/SFTP man-in-the-middle tool that logs interactive sessions and passwords.
π¦ nmap - Nmap (Network Mapper) is a security scanner
π¦ Aircrack-ng - An 802.11 WEP and WPA-PSK keys cracking program
π¦ Nipe - A script to make Tor Network your default gateway.
π¦ Habu - Python Network Hacking Toolkit
π¦ Wifi Jammer - Free program to jam all wifi clients in range
π¦ Firesheep - Free program for HTTP session hijacking attacks.
π¦ Scapy - A Python tool and library for low level packet creation and manipulation
π¦ Amass - In-depth subdomain enumeration tool that performs scraping, recursive brute forcing, crawling of web archives, name altering and reverse DNS sweeping
π¦ sniffglue - Secure multithreaded packet sniffer
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦2020 Hacking Network TOP RATED TOOLS :
>SOURCE GIT
π¦ NetworkMiner - A Network Forensic Analysis Tool (NFAT)
π¦ Paros - A Java-based HTTP/HTTPS proxy for assessing web application vulnerability
π¦ pig - A Linux packet crafting tool
π¦ findsubdomains - really fast subdomains scanning service that has much greater opportunities than simple subs finder(works using OSINT).
π¦ cirt-fuzzer - A simple TCP/UDP protocol fuzzer.
π¦ ASlookup - a useful tool for exploring autonomous systems and all related info (CIDR, ASN, Org...)
π¦ ZAP - The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications
π¦ mitmsocks4j - Man-in-the-middle SOCKS Proxy for Java
π¦ ssh-mitm - An SSH/SFTP man-in-the-middle tool that logs interactive sessions and passwords.
π¦ nmap - Nmap (Network Mapper) is a security scanner
π¦ Aircrack-ng - An 802.11 WEP and WPA-PSK keys cracking program
π¦ Nipe - A script to make Tor Network your default gateway.
π¦ Habu - Python Network Hacking Toolkit
π¦ Wifi Jammer - Free program to jam all wifi clients in range
π¦ Firesheep - Free program for HTTP session hijacking attacks.
π¦ Scapy - A Python tool and library for low level packet creation and manipulation
π¦ Amass - In-depth subdomain enumeration tool that performs scraping, recursive brute forcing, crawling of web archives, name altering and reverse DNS sweeping
π¦ sniffglue - Secure multithreaded packet sniffer
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Netresec
NetworkMiner - The NSM and Network Forensics Analysis Tool β
Network Miner is a network forensics tool for analyzing network traffic
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦2020 Forensic tools- top rated :
> git sources
π¦ Autopsy - A digital forensics platform and graphical interface to The Sleuth Kit and other digital forensics tools
π¦ sleuthkit - A library and collection of command-line digital forensics tools
π¦ EnCase - The shared technology within a suite of digital investigations products by Guidance Software
π¦ malzilla - Malware hunting tool
π¦ IPED - Indexador e Processador de EvidΓΒͺncias Digitais - Brazilian Federal Police Tool for Forensic Investigation
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦2020 Forensic tools- top rated :
> git sources
π¦ Autopsy - A digital forensics platform and graphical interface to The Sleuth Kit and other digital forensics tools
π¦ sleuthkit - A library and collection of command-line digital forensics tools
π¦ EnCase - The shared technology within a suite of digital investigations products by Guidance Software
π¦ malzilla - Malware hunting tool
π¦ IPED - Indexador e Processador de EvidΓΒͺncias Digitais - Brazilian Federal Police Tool for Forensic Investigation
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
www.sleuthkit.org
Autopsy
Autopsy is an open source graphical interface to The Sleuth Kit and other digital forensics tools.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 Cryptography tools-top rated
> git sources
1) xortool - A tool to analyze multi-byte XOR cipher
2) John the Ripper - A fast password cracker
3) Aircrack - Aircrack is 802.11 WEP and WPA-PSK keys cracking program.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 Cryptography tools-top rated
> git sources
1) xortool - A tool to analyze multi-byte XOR cipher
2) John the Ripper - A fast password cracker
3) Aircrack - Aircrack is 802.11 WEP and WPA-PSK keys cracking program.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - hellman/xortool: A tool to analyze multi-byte xor cipher
A tool to analyze multi-byte xor cipher. Contribute to hellman/xortool development by creating an account on GitHub.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Wargame- 2020 most popular :
π¦ OverTheWire - Semtex
π¦ OverTheWire - Vortex
π¦ OverTheWire - Drifter
π¦ pwnable.kr - Provide various pwn challenges regarding system security
π¦ Exploit Exercises - Nebula
π¦ SmashTheStack
π¦ HackingLab
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Wargame- 2020 most popular :
π¦ OverTheWire - Semtex
π¦ OverTheWire - Vortex
π¦ OverTheWire - Drifter
π¦ pwnable.kr - Provide various pwn challenges regarding system security
π¦ Exploit Exercises - Nebula
π¦ SmashTheStack
π¦ HackingLab
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Hacking-Lab
Hacking-Lab for Cyber Security Training
Hacking-Lab offers tailored cyber security training to strengthen your team's offensive and defensive skills. Learn more.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
> 2020 Reverse Engineering-most popular-Helfull :
π¦ Reversing.kr - This site tests your ability to Cracking & Reverse Code Engineering
π¦ CodeEngn - (Korean)
π¦ simples.kr - (Korean)
π¦ Crackmes.de - The world first and largest community website for crackmes and reversemes
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
> 2020 Reverse Engineering-most popular-Helfull :
π¦ Reversing.kr - This site tests your ability to Cracking & Reverse Code Engineering
π¦ CodeEngn - (Korean)
π¦ simples.kr - (Korean)
π¦ Crackmes.de - The world first and largest community website for crackmes and reversemes
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Codeengn
CodeEngn.com [μ½λμμ§] - Challenges
μ½λμμ§μ κ΅λ΄ 리λ²μ€μμ§λμ΄λ§ μ 보곡μ λ₯Ό μν΄ 2007λ
λΆν° 리λ²μ€μμ§λμ΄λ§ 컨νΌλ°μ€ λ° λΉκ³΅κ° μν¬μμ νμ
μ€λ¬΄μλ€κ³Ό ν¨κ» μ΄μνκ³ μμ΅λλ€. 리λ²μ€μμ§λμ΄λ§μ΄λΌλ νλμ ν° μ£Όμ λ‘ μννΈμ¨μ΄ 보μμ λν λ€μν μκ°κ³Ό μ°κ΅¬μ£Όμ μ λν μ 보곡μ λ₯Ό μΆκ΅¬νκ³ μμΌλ©°, μμ
μ μ΄μ΅ μμ΄ μμ μμ°μΌλ‘ μ΄μνκ³ μμ΄ ν° μμ°μΌλ‘ μ΄μνλ λ€λ₯Έ 컨νΌλ°μ€μ λΉν΄ μ¬λ¬ κ°μ§λ‘ λΆμ‘± ν μ μμ΅λλ€.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 CTF
#Competition :
π¦ DEF CON
π¦ CSAW CTF
π¦ hack.lu CTF
π¦ Pliad CTF
π¦ RuCTFe
π¦ Ghost in the Shellcode
π¦ PHD CTF
π¦ SECUINSIDE CTF
π¦ Codegate CTF
π¦ Boston Key Party CTF
π¦ ZeroDays CTF
π¦ InsomniΓ’β¬β’hack
π¦ Pico CTF
π¦ prompt(1) to win - XSS Challeges
π¦ HackTheBox
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 CTF
#Competition :
π¦ DEF CON
π¦ CSAW CTF
π¦ hack.lu CTF
π¦ Pliad CTF
π¦ RuCTFe
π¦ Ghost in the Shellcode
π¦ PHD CTF
π¦ SECUINSIDE CTF
π¦ Codegate CTF
π¦ Boston Key Party CTF
π¦ ZeroDays CTF
π¦ InsomniΓ’β¬β’hack
π¦ Pico CTF
π¦ prompt(1) to win - XSS Challeges
π¦ HackTheBox
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 General hacking :
> top git resources :
π¦ Hack+ - An Intelligent network of bots that fetch the latest InfoSec content.
π¦ CTFtime.org - All about CTF (Capture The Flag)
π¦ WeChall
π¦ CTF archives (shell-storm)
π¦ Rookit Arsenal - OS RE and rootkit development
π¦ Pentest Cheat Sheets - Collection of cheat sheets useful for pentesting
π¦ Movies For Hackers - A curated list of movies every hacker & cyberpunk must watch.
π¦ Hopper's Roppers Intro. to CTF Course - A free course that teaches the fundamentals of forensics, cryptography, and web-exploitation required to be successful in Capture the Flag competitions.
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 General hacking :
> top git resources :
π¦ Hack+ - An Intelligent network of bots that fetch the latest InfoSec content.
π¦ CTFtime.org - All about CTF (Capture The Flag)
π¦ WeChall
π¦ CTF archives (shell-storm)
π¦ Rookit Arsenal - OS RE and rootkit development
π¦ Pentest Cheat Sheets - Collection of cheat sheets useful for pentesting
π¦ Movies For Hackers - A curated list of movies every hacker & cyberpunk must watch.
π¦ Hopper's Roppers Intro. to CTF Course - A free course that teaches the fundamentals of forensics, cryptography, and web-exploitation required to be successful in Capture the Flag competitions.
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
ctftime.org
CTFtime.org / All about CTF (Capture The Flag)
Capture The Flag, CTF teams, CTF ratings, CTF archive, CTF writeups
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 Post exploitation populars :
π¦ empire - A post exploitation framework for powershell and python.
π¦ silenttrinity - A post exploitation tool that uses iron python to get past powershell restrictions.
π¦ ebowla - Framework for Making Environmental Keyed Payloads
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
2020 Post exploitation populars :
π¦ empire - A post exploitation framework for powershell and python.
π¦ silenttrinity - A post exploitation tool that uses iron python to get past powershell restrictions.
π¦ ebowla - Framework for Making Environmental Keyed Payloads
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - EmpireProject/Empire: Empire is a PowerShell and Python post-exploitation agent.
Empire is a PowerShell and Python post-exploitation agent. - EmpireProject/Empire
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Updated Empire is a PowerShell and Python post-exploitation agent.
πΈπ½π π π°π»π»πΈπ π°π πΈπΎπ½ & π π π½:
1) git clone https://github.com/EmpireProject/Empire.git
2) Initial Setup
> Run the ./setup/install.sh script. This will install the few dependencies and run the ./setup/setup_database.py script. The setup_database.py file contains various setting that you can manually modify
3) and then initializes the ./data/empire.db backend database. No additional configuration should be needed- hopefully everything works out of the box.
4) Running ./empire will start Empire, and ./empire βdebug will generate a verbose debug log at ./empire.debug. The included ./setup/reset.sh will reset/reinitialize the database and launch Empire in debug mode.
> [for more](http://www.powershellempire.com/?page_id=110)
β @UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Updated Empire is a PowerShell and Python post-exploitation agent.
πΈπ½π π π°π»π»πΈπ π°π πΈπΎπ½ & π π π½:
1) git clone https://github.com/EmpireProject/Empire.git
2) Initial Setup
> Run the ./setup/install.sh script. This will install the few dependencies and run the ./setup/setup_database.py script. The setup_database.py file contains various setting that you can manually modify
3) and then initializes the ./data/empire.db backend database. No additional configuration should be needed- hopefully everything works out of the box.
4) Running ./empire will start Empire, and ./empire βdebug will generate a verbose debug log at ./empire.debug. The included ./setup/reset.sh will reset/reinitialize the database and launch Empire in debug mode.
> [for more](http://www.powershellempire.com/?page_id=110)
β @UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - EmpireProject/Empire: Empire is a PowerShell and Python post-exploitation agent.
Empire is a PowerShell and Python post-exploitation agent. - EmpireProject/Empire