CySuite has a new landing page redesign!
Join the waitlist today to get early access to the beta version of CySuite. In the beta version, you can link your GitHub repository and visualize a code property graph of the syntax, call stack, and dependencies of your Python program.
Landing page redesign!
The homepage has been redesigned to better explain the three main features of CySuite and how it can help your company. We are still in the early stages and would love your feedback.
Visit the website at https://t.co/Q2BfLlyNoW
Would you prefer:
A: Access to an API that queries for subdomains, directories and parameters (to integrate to your workflow)
B: A local software that lets you scan web targets for subdomains, directories and parameters manually (like Burp)
#infosec#BugBounty#CyberSecurity
Eyeopening keynote by @mdowd for those whoโve been ignoring the trends past decade. data-only, crypto and web attacks are taking over mem corruption bugs in multiple domains.
Nowadays your offensive team is like a car with 3 wheels if it lacks web or crypto experts.
Here are some labs to practice your #CyberSecurity skills categorized by bug type:
[XSS]
https://t.co/VEueNDVfGN
https://t.co/K3EgbqgXNT
https://t.co/pPh35u0yC4
https://t.co/5xKObHhAiy
https://t.co/6r91gExlY1
https://t.co/KR32PiVzD4
#infosec#BugBounty#bugbountytip
PHP drops any header if it finds nullbyte value in the header. If user controls input in header, they can chose to drop the header. This works on PHP since 2015 but will be fixed on next version. #BugBounty
Solution for my CTF:
%00<img src=x onerror=alert(1337)>
This is a really good challenge for beginners. It won't take 30 minutes of your time, and it will increase your problem solving skills.
Plus, there are no ranking or timers. Enjoy and good luck!
However, adding the Authorization Header to the 403 Forbidden status code won't change the response, because the server understands the request but refuses to authorize it. For example, sending a payload continuously to a server can lead to your IP getting forbidden.
#infosec
Your subdomain enumeration scan has just finished and you see two outputs. The first has 200 OK and the other has 401 Unauthorized.
Which one do you go for first?
Quick #bugbountytip: The 401 and 403 status codes are two different things. As per the RFC standard, the 401 Unauthorized header indicates that the request has not been applied because it lacks valid credentials for the target resource. Adding an Authorization Header fixes it.