Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.8K 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
In the world of cybersecurity, maintaining anonymity while conducting bug bounty hunting is paramount. A secure and anonymous environment…Continue reading on Medium » (https://medium.com/@paritoshblogs/how-to-create-a-cloud-lab-for-anonymous-bug-bounty-hunting-e80ed3a68d8c?source=rss------bug_bounty-5)
Unveiling a Surprising Bug in KYC Verification: The Discovery Worth $$$

IntroductionContinue reading on Medium »
Read more...
Security architecture price
https://www.reddit.com/r/Pentesting/comments/1ct9thh/security_architecture_price/

<!-- SC_OFF -->Good morning, We are two cyber security engineers with a MSc degree in cybersecurity and 2 years of experience in the field. Following a ramsomware attack, we were contacted by a friend’s company to try to restore encrypted data. We finished the task and restored all possibile data without any payment as a favour to our friend. His company decided to rely on us as security architects to rebuild the entire network architecture. This architecture is briefly composed of 10 machines, a NAS and it is mandatory for the company having the possibility to access the NAS data everywhere. We are newbies in this specific field but at the same time we think we have the capabilities to do a great job. We would like to receive from this fantastic community suggestions on a possible fair price to offer for this project. To sum up, the service that we are going to offer is composed of: - Security design - Implementation of the designed solution - Creation of the documentation for maintenance - Security awareness of employees (e.g. phishing campaigns prevention) <!-- SC_ON --> submitted by /u/Damzap (https://www.reddit.com/user/Damzap)
[link] (https://www.reddit.com/r/Pentesting/comments/1ct9thh/security_architecture_price/) [comments] (https://www.reddit.com/r/Pentesting/comments/1ct9thh/security_architecture_price/)
Earning from pentesting
https://www.reddit.com/r/Pentesting/comments/1cta76y/earning_from_pentesting/

<!-- SC_OFF -->I have been looking to do pentests projects to earn from there. Does anyone has some experience related to that. I would like to know how to do it and do it well. I have completed few courses and have my eyes on a certification after that. Also is there any discord group for pentesters? <!-- SC_ON --> submitted by /u/thededucer43 (https://www.reddit.com/user/thededucer43)
[link] (https://www.reddit.com/r/Pentesting/comments/1cta76y/earning_from_pentesting/) [comments] (https://www.reddit.com/r/Pentesting/comments/1cta76y/earning_from_pentesting/)
Vulnerable WordPress April 2024 (Arasbaran)

Github Repo: https://github.com/onhexgroup/Vulnerable-WordPressContinue reading on Medium »
Read more...
Invoke-SessionHunter - Retrieve And Display Information About Active User Sessions On Remote Computers (No Admin Privileges Required)
http://www.kitploit.com/2024/05/invoke-sessionhunter-retrieve-and.html
Retrieve and display information about active (https://www.kitploit.com/search/label/Active) user sessions on remote computers (https://www.kitploit.com/search/label/Computers). No admin privileges required. The tool leverages the remote registry (https://www.kitploit.com/search/label/Registry) service to query the HKEY_USERS registry (https://www.kitploit.com/search/label/Registry) hive on the remote computers. It identifies and extracts Security Identifiers (SIDs) associated with active user sessions, and translates these into corresponding usernames, offering insights into who is currently logged in. If the -CheckAdminAccess switch is provided, it will gather sessions by authenticating to targets where you have local admin access using Invoke-WMIRemoting (https://github.com/Leo4j/Invoke-WMIRemoting) (which most likely will retrieve more results) It's important to note that the remote registry service needs to be running on the remote computer for the tool to work effectively. In my tests, if the service is stopped but its Startup type is configured to "Automatic" or "Manual", the service will start automatically on the target computer once queried (this is native behavior), and sessions information will be retrieved. If set to "Disabled" no session information can be retrieved from the target.
Usage: iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/Leo4j/Invoke-SessionHunter/main/Invoke-SessionHunter.ps1')
If run without parameters or switches it will retrieve active sessions for all computers in the current domain by querying the registry Invoke-SessionHunter
Gather sessions by authenticating to targets where you have local admin access Invoke-SessionHunter -CheckAsAdmin
You can optionally provide credentials (https://www.kitploit.com/search/label/Credentials) in the following format Invoke-SessionHunter -CheckAsAdmin -UserName "ferrari\Administrator" -Password "P@ssw0rd!"
You can also use the -FailSafe switch, which will direct the tool to proceed if the target remote registry becomes unresponsive. This works in cobination with -Timeout | Default = 2, increase for slower networks. Invoke-SessionHunter -FailSafe
Invoke-SessionHunter -FailSafe -Timeout 5
Use the -Match switch to show only targets where you have admin access and a privileged user is logged in Invoke-SessionHunter -Match
All switches can be combined Invoke-SessionHunter -CheckAsAdmin -UserName "ferrari\Administrator" -Password "P@ssw0rd!" -FailSafe -Timeout 5 -Match