Directory Traversal and LFI worth $400
https://medium.com/@hritkmjth/directory-traversal-and-lfi-worth-400-c4422785d3bd?source=rss------bug_bounty-5
https://medium.com/@hritkmjth/directory-traversal-and-lfi-worth-400-c4422785d3bd?source=rss------bug_bounty-5
A Directory Traversal and Local File Inclusion bug couldn’t be simpler than this, which eventually led to a bounty worth $400.Continue reading on Medium » (https://medium.com/@hritkmjth/directory-traversal-and-lfi-worth-400-c4422785d3bd?source=rss------bug_bounty-5)
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
FindUncommonShares - A Python Equivalent Of PowerView's Invoke-ShareFinder.ps1 Allowing To Quickly Find Uncommon Shares In Vast Windows Domains
https://blogger.googleusercontent.com/img/a/AVvXsEgfoW7Db08N9MM7hMlq9ztJEYDQhJTIs1LZBJNTskWE6QOiGCLbnynxr5XRFSIhDc28tWofeG9xhz5kB5qaC9m1lBipIYeYn4bxGEn0Te66zjTl0UZRlv6z2bcb7UGvRtgWkKqoO39vl7wzyf6A3a0CTcydRh5liLjwLx2EzEMHxeghnpa3w23KLU1UKA=w640-h356 The script FindUncommonShares.py is a Python equivalent of PowerView's Invoke-ShareFinder.ps1 allowing to quickly find uncommon shares in vast Windows Active Directory Domains. Features* Only requires a low privileges domain user account.
* Automatically gets the list of all computers from the domain controller's LDAP.
* Ignore the hidden shares (ending with
* Multithreaded connections to discover SMB shares.
* Export results in JSON with IP, name, comment, flags and UNC path with
* Export results in XLSX with IP, name, comment, flags and UNC path with
* Export results in SQLITE3 with IP, name, comment, flags and UNC path with
* Iterate on LDAP result pages to get every computer of the domain, no matter the size. Usage
FindUncommonShares - A Python Equivalent Of PowerView's Invoke-ShareFinder.ps1 Allowing To Quickly Find Uncommon Shares In Vast Windows Domains
https://blogger.googleusercontent.com/img/a/AVvXsEgfoW7Db08N9MM7hMlq9ztJEYDQhJTIs1LZBJNTskWE6QOiGCLbnynxr5XRFSIhDc28tWofeG9xhz5kB5qaC9m1lBipIYeYn4bxGEn0Te66zjTl0UZRlv6z2bcb7UGvRtgWkKqoO39vl7wzyf6A3a0CTcydRh5liLjwLx2EzEMHxeghnpa3w23KLU1UKA=w640-h356 The script FindUncommonShares.py is a Python equivalent of PowerView's Invoke-ShareFinder.ps1 allowing to quickly find uncommon shares in vast Windows Active Directory Domains. Features* Only requires a low privileges domain user account.
* Automatically gets the list of all computers from the domain controller's LDAP.
* Ignore the hidden shares (ending with
$) with --ignore-hidden-shares.* Multithreaded connections to discover SMB shares.
* Export results in JSON with IP, name, comment, flags and UNC path with
--export-json <file.json.* Export results in XLSX with IP, name, comment, flags and UNC path with
--export-xlsx <file.xlsx.* Export results in SQLITE3 with IP, name, comment, flags and UNC path with
--export-sqlite <file.db.* Iterate on LDAP result pages to get every computer of the domain, no matter the size. Usage
$ ./FindUncommonShares.py -h
FindUncommonShares v2.4 - by @podalirius_
usage: FindUncommonShares.py [-h] [--use-ldaps] [-q] [--debug] [-no-colors] [-I] [-t THREADS] [--export-xlsx EXPORT_XLSX] [--export-json EXPORT_JSON] [--export-sqlite EXPORT_SQLITE] --dc-ip ip address [-d DOMAIN] [-u USER]
[--no-pass | -p PASSWORD | -H [LMHASH:]NTHASH | --aes-key hex key] [-k]
Find uncommon SMB shares on remote machines.
optional arguments:
-h, --help show this help message and exit
--use-ldaps Use LDAPS instead of LDAP
-q, --quiet Show no information at all.
--debug Debug mode.
-no-colors Disables colored output mode
-I, --ignore-hidden-shares
Ignores hidden shares (shares ending with $)
-t THREADS, --threads THREADS
Number of threads (default: 20)
Output fi les:
--export-xlsx EXPORT_XLSX
Output XLSX file to store the results in.
--export-json EXPORT_JSON
Output JSON file to store the results in.
--export-sqlite EXPORT_SQLITE
Output SQLITE3 file to store the results in.
Authentication & connection:
--dc-ip ip address IP Address of the domain controller or KDC (Key Distribution Center) for Kerberos. If omitted it will use the domain part (FQDN) specified in the identity parameter
-d DOMAIN, --domain DOMAIN
(FQDN) domain to authenticate to
-u USER, --user USER user to authenticate with
Credentials:
--no-pass Don't ask for password (useful for -k)
-p PASSWORD, --password PASSWORD
Password to authenticate w ith
-H [LMHASH:]NTHASH, --hashes [LMHASH:]NTHASH
NT/LM hashes, format is LMhash:NThash
--aes-key hex key AES key to use for Kerberos Authentication (128 or 256 bits)
-k, --kerberos Use Kerberos authentication. Grabs credentials from .ccache file (KRB5CCNAME) based on target parameters. If valid credentials cannot be found, it will use the ones specified in the command line Examples :$ ./FindUncommonShares.py -u 'user1' -d 'LAB.local' -p 'P@ssw0rd!' --dc-ip 192.168.2.1
FindUncommonShares v2.3 - by @podalirius_
[>] Extracting all computers ...
[+] Found 2 computers.
[>] Enumerating shares ...
[>] Found 'Users' on 'DC01.LAB.local'
[>] Found 'WeirdShare' on 'DC01.LAB.local' (comment: 'Test comment')
[>] Found 'AnotherShare' on 'PC01.LAB.local'
[>] Found 'Users' on 'PC01.LAB.local
$ Each JSON entry looks like this: {
"computer": {
"fqdn": "DC01.LAB.local",
"ip": "192.168.1.1"
},
"share": {
"name": "ADMIN$",
"comment": "Remote Admin",
"hidden": true,
"uncpath": "\\\\192.168.1.46\\ADMIN$\\",
"type": {
"stype_value": 2147483648,
"stype_flags": [
"STYPE_DISKTREE",
"STYPE_TEMPORARY"
]
}
}
}Credits* Feature suggested in impacket issue #1176 by @CaledoniaProject Download FindUncommonShares
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
ChatGPT, AI, and Companies’ 2023 Cybersecurity Challenges and Impact
https://cdn-images-1.medium.com/max/786/1*gxsEfOHbcksXOkbjrMpKGQ.png
Insights on ChatGPT and the Evolving Cybersecurity Threat Landscape and Strategies for Companies in 2023.
Continue reading on Cybersecurity Matrix »
ChatGPT, AI, and Companies’ 2023 Cybersecurity Challenges and Impact
https://cdn-images-1.medium.com/max/786/1*gxsEfOHbcksXOkbjrMpKGQ.png
Insights on ChatGPT and the Evolving Cybersecurity Threat Landscape and Strategies for Companies in 2023.
Continue reading on Cybersecurity Matrix »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to create a RAT payload using msfvenom
https://cdn-images-1.medium.com/max/782/0*E8q4tnNIVLw7X200
This article is written for educational purposes only
Continue reading on System Weakness »
How to create a RAT payload using msfvenom
https://cdn-images-1.medium.com/max/782/0*E8q4tnNIVLw7X200
This article is written for educational purposes only
Continue reading on System Weakness »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Hack The Box Templated Challenge Writeup
https://cdn-images-1.medium.com/max/1000/1*GqBQ8UeUBsV9fRnwzBiVHw.png
Açıklama: Selam arkadaşlar, Hack the Box platformunda bulunan ‘Templated’ isimli challenge çözümünü sizinle paylaşıyor olacağım. Burada…
Continue reading on Medium »
Hack The Box Templated Challenge Writeup
https://cdn-images-1.medium.com/max/1000/1*GqBQ8UeUBsV9fRnwzBiVHw.png
Açıklama: Selam arkadaşlar, Hack the Box platformunda bulunan ‘Templated’ isimli challenge çözümünü sizinle paylaşıyor olacağım. Burada…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Machines abroad
Are chinese or russian machines ( webservers vulnerable computers ,routers etc) configured in their respective languages ?
Would you see Cyrillic if you got root privileges on a russian server or chinese characters on one of theirs on the command line?
submitted by /u/Old_Trash_4340
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
Machines abroad
Are chinese or russian machines ( webservers vulnerable computers ,routers etc) configured in their respective languages ?
Would you see Cyrillic if you got root privileges on a russian server or chinese characters on one of theirs on the command line?
submitted by /u/Old_Trash_4340
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Festival Wrist band cloning. Possible?
I have 2 wristbands registered and activated and 2 that haven't. (Ultra Music Festival)
Can we clone and use the active ones with a reader/writer?
They don't require you to scan out of an area, only to get in. I would assume it's not as easy as just copying the RFID chip in the band, or is it?
submitted by /u/Sonya7rii
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
Festival Wrist band cloning. Possible?
I have 2 wristbands registered and activated and 2 that haven't. (Ultra Music Festival)
Can we clone and use the active ones with a reader/writer?
They don't require you to scan out of an area, only to get in. I would assume it's not as easy as just copying the RFID chip in the band, or is it?
submitted by /u/Sonya7rii
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
Wifi_Db - Script To Parse Aircrack-ng Captures To A SQLite Database
http://www.kitploit.com/2023/03/wifidb-script-to-parse-aircrack-ng.html
http://www.kitploit.com/2023/03/wifidb-script-to-parse-aircrack-ng.html