Account Takeover by OTP bypass
Hey everyone! This bypass is little bit interesting and you will get to learn a lot hopefully.Continue reading on Medium »
Read more...
Hey everyone! This bypass is little bit interesting and you will get to learn a lot hopefully.Continue reading on Medium »
Read more...
Account Takeover by OTP bypass
https://codewithvamp.medium.com/account-takeover-by-otp-bypass-ec0cff67f516?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://codewithvamp.medium.com/account-takeover-by-otp-bypass-ec0cff67f516?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
Account Takeover by OTP bypass
Hey everyone! This bypass is little bit interesting and you will get to learn a lot hopefully.
Hey everyone! This bypass is little bit interesting and you will get to learn a lot hopefully.Continue reading on Medium » (https://codewithvamp.medium.com/account-takeover-by-otp-bypass-ec0cff67f516?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
Account Takeover by OTP bypass
Hey everyone! This bypass is little bit interesting and you will get to learn a lot hopefully.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Account Takeover by OTP bypass
https://cdn-images-1.medium.com/max/1435/1*v1XYTJuN3e-ujNpok1riQA.png
Hey everyone! This bypass is little bit interesting and you will get to learn a lot hopefully.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Account Takeover by OTP bypass
https://cdn-images-1.medium.com/max/1435/1*v1XYTJuN3e-ujNpok1riQA.png
Hey everyone! This bypass is little bit interesting and you will get to learn a lot hopefully.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Account Takeover by OTP bypass
Hey everyone! This bypass is little bit interesting and you will get to learn a lot hopefully.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Social Media: A Blessing or a Curse?
https://cdn-images-1.medium.com/max/2600/1*uYdh5caRRjcgKBnGC7mP0w.jpeg
“We don’t have a choice on whether we do social media, the question is how well we do it.”
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Social Media: A Blessing or a Curse?
https://cdn-images-1.medium.com/max/2600/1*uYdh5caRRjcgKBnGC7mP0w.jpeg
“We don’t have a choice on whether we do social media, the question is how well we do it.”
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Social Media: A Blessing or a Curse?
“We don’t have a choice on whether we do social media, the question is how well we do it.”
hacking: security in practice
Tool for find Geo location
Is there any tool or site to find someones exact location using IP address I've search with some sites but it shows the ISP's location.
submitted by /u/Anti_mage2002
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Tool for find Geo location
Is there any tool or site to find someones exact location using IP address I've search with some sites but it shows the ISP's location.
submitted by /u/Anti_mage2002
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Tool for find Geo location
Is there any tool or site to find someones exact location using IP address I've search with some sites but it shows the ISP's location.
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Trackers: The Sound of 16-Bit
https://external-preview.redd.it/ms2oIVlbho7YiddtO6FSNdHyWucMVpNbbYu8bNctg3E.jpg?width=320&crop=smart&auto=webp&s=bfdd224ba70b38856754f79face1dc0644f78a88 submitted by /u/nangaparbat
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Trackers: The Sound of 16-Bit
https://external-preview.redd.it/ms2oIVlbho7YiddtO6FSNdHyWucMVpNbbYu8bNctg3E.jpg?width=320&crop=smart&auto=webp&s=bfdd224ba70b38856754f79face1dc0644f78a88 submitted by /u/nangaparbat
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Trackers: The Sound of 16-Bit
Posted in r/hacking by u/nangaparbat • 1 point and 0 comments
VAmPI - Vulnerable REST API With OWASP Top 10 Vulnerabilities For Security Testing
http://www.kitploit.com/2022/06/vampi-vulnerable-rest-api-with-owasp.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2022/06/vampi-vulnerable-rest-api-with-owasp.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
VAmPI - Vulnerable REST API With OWASP Top 10 Vulnerabilities For Security Testing
The Vulnerable API (Based on OpenAPI 3) VAmPI is a vulnerable API made with Flask and it includes vulnerabilities (https://www.kitploit.com/search/label/vulnerabilities) from the OWASP top 10 vulnerabilities for APIs. It was created as I wanted a vulnerable API to evaluate the efficiency of tools used to detect security issues in APIs. It includes a switch on/off to allow the API to be vulnerable or not while testing. This allows to cover better the cases for false positives/negatives. VAmPI can also be used for learning/teaching purposes. You can find a bit more details about the vulnerabilities in erev0s.com (https://erev0s.com/blog/vampi-vulnerable-api-security-testing/).
Features Based on OWASP Top 10 (https://www.kitploit.com/search/label/OWASP%20Top%2010) vulnerabilities for APIs. OpenAPI3 specs and Postman Collection included. Global switch on/off to have a vulnerable environment or not. Token-Based Authentication (https://www.kitploit.com/search/label/Authentication) (Adjust lifetime from within app.py) VAmPI's flow of actions is going like this: an unregistered user can see minimal information about the dummy users included in the API. A user can register and then login to be allowed using the token received during login to post a book. For a book posted the data accepted are the title and a secret about that book. Each book is unique for every user and only the owner of the book should be allowed to view the secret. A quick rundown of the actions included can be seen in the following table: Action Path Details GET /createdb Creates and populates the database with dummy data GET / VAmPI home GET /users/v1 Displays all users with basic information GET /users/v1/_debug Displays all details for all users POST /users/v1/register Register new user POST /users/v1/login Login to VAmPI GET /users/v1/{username} Displays user by username DELETE /users/v1/{username} Deletes user by username (Only Admins) PUT /users/v1/{username}/email Update a single users email PUT /users/v1/{username}/password Update users password GET /books/v1 Retrieves all books POST /books/v1 Add new book GET /books/v1/{book} Retrieves book by title along with secret For more details you can use a service like the swagger editor (https://editor.swagger.io/) supplying it the OpenAPI specification which can be found in the directory openapi_specs. List of Vulnerabilities SQLi Injection Unauthorized Password Change Broken Object Level Authorization Mass Assignment Excessive Data Exposure through debug endpoint User and Password Enumeration RegexDOS (Denial of Service) Lack of Resources & Rate Limiting Run it It is a Flask application so in order to run it you can install all requirements (https://www.kitploit.com/search/label/Requirements) and then run the app.py. To install all requirements simply run pip3 install -r requirements.txt and then python3 app.py. Or if you prefer you can also run it through docker or docker compose. Run it through Docker Build with docker build -t vampi_docker:latest .
and Run (remove the -d if you want to see the output in your terminal) docker run -d -p 5000:5000 vampi_docker:latest
[Note: if you run Docker on newer versions of the MacOS, use -p 5001:5000 to avoid conflicting with the AirPlay Receiver service. Alternatively, you could disable the AirPlay Receiver service in your System Preferences -> Sharing settings.] Run it through Docker Compose Assuming you've built the container per the above steps, run one instance securely (port 5001) and another insecurely (port 5002): docker compose up -d
Customizing token timeout and vulnerable environment or not If you would like to alter the timeout of the token created after login or if you want to change the environment not to be vulnerable then you can use a few ways depending how you run the application. If you run it like
___________________________
@hacking_Attack
@Hacking_Video
Features Based on OWASP Top 10 (https://www.kitploit.com/search/label/OWASP%20Top%2010) vulnerabilities for APIs. OpenAPI3 specs and Postman Collection included. Global switch on/off to have a vulnerable environment or not. Token-Based Authentication (https://www.kitploit.com/search/label/Authentication) (Adjust lifetime from within app.py) VAmPI's flow of actions is going like this: an unregistered user can see minimal information about the dummy users included in the API. A user can register and then login to be allowed using the token received during login to post a book. For a book posted the data accepted are the title and a secret about that book. Each book is unique for every user and only the owner of the book should be allowed to view the secret. A quick rundown of the actions included can be seen in the following table: Action Path Details GET /createdb Creates and populates the database with dummy data GET / VAmPI home GET /users/v1 Displays all users with basic information GET /users/v1/_debug Displays all details for all users POST /users/v1/register Register new user POST /users/v1/login Login to VAmPI GET /users/v1/{username} Displays user by username DELETE /users/v1/{username} Deletes user by username (Only Admins) PUT /users/v1/{username}/email Update a single users email PUT /users/v1/{username}/password Update users password GET /books/v1 Retrieves all books POST /books/v1 Add new book GET /books/v1/{book} Retrieves book by title along with secret For more details you can use a service like the swagger editor (https://editor.swagger.io/) supplying it the OpenAPI specification which can be found in the directory openapi_specs. List of Vulnerabilities SQLi Injection Unauthorized Password Change Broken Object Level Authorization Mass Assignment Excessive Data Exposure through debug endpoint User and Password Enumeration RegexDOS (Denial of Service) Lack of Resources & Rate Limiting Run it It is a Flask application so in order to run it you can install all requirements (https://www.kitploit.com/search/label/Requirements) and then run the app.py. To install all requirements simply run pip3 install -r requirements.txt and then python3 app.py. Or if you prefer you can also run it through docker or docker compose. Run it through Docker Build with docker build -t vampi_docker:latest .
and Run (remove the -d if you want to see the output in your terminal) docker run -d -p 5000:5000 vampi_docker:latest
[Note: if you run Docker on newer versions of the MacOS, use -p 5001:5000 to avoid conflicting with the AirPlay Receiver service. Alternatively, you could disable the AirPlay Receiver service in your System Preferences -> Sharing settings.] Run it through Docker Compose Assuming you've built the container per the above steps, run one instance securely (port 5001) and another insecurely (port 5002): docker compose up -d
Customizing token timeout and vulnerable environment or not If you would like to alter the timeout of the token created after login or if you want to change the environment not to be vulnerable then you can use a few ways depending how you run the application. If you run it like
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
Kitploit – Maintenance in Progress
Kitploit is temporarily under maintenance. We’ll be back shortly with improvements.
normal with python3 app.py then all you have to do is edit the alive and vuln variables defined in the app.py itself. The alive variable is measured in seconds, so if you put 100, then the token expires after 100 seconds. The vuln variable is like boolean, if you set it to 1 then the application is vulnerable, and if you set it to 0 the application is not vulnerable. If you run it through Docker, then you must either pass environment variables to the docker run command or edit the Dockerfile and rebuild. Docker run example: docker run -d -e vulnerable=0 -e tokentimetolive=300 -p 5000:5000 vampire_docker:latest One nice feature to running it this way is you can startup a 2nd container with vulnerable=1 on a different port and flip easily between the two. In the Dockerfile you will find two environment variables being set, the ENV vulnerable=1 and the ENV tokentimetolive=60. Feel free to change it before running the docker build command. Picture from freepik - www.freepik.com (https://www.freepik.com/vectors/party)
Download VAmPI (https://github.com/erev0s/VAmPI)
___________________________
@hacking_Attack
@Hacking_Video
Download VAmPI (https://github.com/erev0s/VAmPI)
___________________________
@hacking_Attack
@Hacking_Video
Freepik
Enjoy these Party Vectors for Free
You can find & download the most popular Party Vectors on Freepik. Remember that these high-quality images are free for commercial use. Freepik is made for creative people like you
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Cómo atacar un SQL Server
https://cdn-images-1.medium.com/max/600/1*nVzHDMxlsbYXDa9EQTnP-g.png
Hacemos un escaneo al servidor con nmap.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Cómo atacar un SQL Server
https://cdn-images-1.medium.com/max/600/1*nVzHDMxlsbYXDa9EQTnP-g.png
Hacemos un escaneo al servidor con nmap.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Cómo atacar un SQL Server
Hacemos un escaneo al servidor con nmap.
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
VAmPI - Vulnerable REST API With OWASP Top 10 Vulnerabilities For Security Testing
https://blogger.googleusercontent.com/img/a/AVvXsEiWkXGsybGWZUFpzkXOC_NJd4CzE6cH17TIxQ1Nqufn4lPbV4MDeFlPjFi4F3uT1aLy-GiXz0ER3msn0e9_jGzRc6VOePnLCU_NzBMT6HGyM9O6iis8xQzL7oOZ8zsTEH2P-DSc-Ml-W0UnaIZI3k0OkLsdfO2NFXc_bztQZE-vgkeVTm0xG-U_3OG-=w640-h336 The Vulnerable API (Based on OpenAPI 3)
VAmPI is a vulnerable API made with Flask and it includes vulnerabilities from the OWASP top 10 vulnerabilities for APIs. It was created as I wanted a vulnerable API to evaluate the efficiency of tools used to detect security issues in APIs. It includes a switch on/off to allow the API to be vulnerable or not while testing. This allows to cover better the cases for false positives/negatives. VAmPI can also be used for learning/teaching purposes. You can find a bit more details about the vulnerabilities in erev0s.com. Features* Based on OWASP Top 10 vulnerabilities for APIs.
* OpenAPI3 specs and Postman Collection included.
* Global switch on/off to have a vulnerable environment or not.
* Token-Based Authentication (Adjust lifetime from within app.py)
VAmPI's flow of actions is going like this: an unregistered user can see minimal information about the dummy users included in the API. A user can register and then login to be allowed using the token received during login to post a book. For a book posted the data accepted are the title and a secret about that book. Each book is unique for every user and only the owner of the book should be allowed to view the secret.
A quick rundown of the actions included can be seen in the following table:
Action Path Details GET /createdb Creates and populates the database with dummy data GET / VAmPI home GET /users/v1 Displays all users with basic information GET /users/v1/_debug Displays all details for all users POST /users/v1/register Register new user POST /users/v1/login Login to VAmPI GET /users/v1/{username} Displays user by username DELETE /users/v1/{username} Deletes user by username (Only Admins) PUT /users/v1/{username}/email Update a single users email PUT /users/v1/{username}/password Update users password GET /books/v1 Retrieves all books POST /books/v1 Add new book GET /books/v1/{book} Retrieves book by title along with secret
For more details you can use a service like the swagger editor supplying it the OpenAPI specification which can be found in the directory
* Unauthorized Password Change
* Broken Object Level Authorization
* Mass Assignment
* Excessive Data Exposure through debug endpoint
* User and Password Enumeration
* RegexDOS (Denial of Service)
* Lack of Resources & Rate Limiting Run itIt is a Flask application so in order to run it you can install all requirements and then run the
Or if you prefer you can also run it through docker or docker compose. Run it through DockerBuild with
___________________________
@hacking_Attack
@Hacking_Video
VAmPI - Vulnerable REST API With OWASP Top 10 Vulnerabilities For Security Testing
https://blogger.googleusercontent.com/img/a/AVvXsEiWkXGsybGWZUFpzkXOC_NJd4CzE6cH17TIxQ1Nqufn4lPbV4MDeFlPjFi4F3uT1aLy-GiXz0ER3msn0e9_jGzRc6VOePnLCU_NzBMT6HGyM9O6iis8xQzL7oOZ8zsTEH2P-DSc-Ml-W0UnaIZI3k0OkLsdfO2NFXc_bztQZE-vgkeVTm0xG-U_3OG-=w640-h336 The Vulnerable API (Based on OpenAPI 3)
VAmPI is a vulnerable API made with Flask and it includes vulnerabilities from the OWASP top 10 vulnerabilities for APIs. It was created as I wanted a vulnerable API to evaluate the efficiency of tools used to detect security issues in APIs. It includes a switch on/off to allow the API to be vulnerable or not while testing. This allows to cover better the cases for false positives/negatives. VAmPI can also be used for learning/teaching purposes. You can find a bit more details about the vulnerabilities in erev0s.com. Features* Based on OWASP Top 10 vulnerabilities for APIs.
* OpenAPI3 specs and Postman Collection included.
* Global switch on/off to have a vulnerable environment or not.
* Token-Based Authentication (Adjust lifetime from within app.py)
VAmPI's flow of actions is going like this: an unregistered user can see minimal information about the dummy users included in the API. A user can register and then login to be allowed using the token received during login to post a book. For a book posted the data accepted are the title and a secret about that book. Each book is unique for every user and only the owner of the book should be allowed to view the secret.
A quick rundown of the actions included can be seen in the following table:
Action Path Details GET /createdb Creates and populates the database with dummy data GET / VAmPI home GET /users/v1 Displays all users with basic information GET /users/v1/_debug Displays all details for all users POST /users/v1/register Register new user POST /users/v1/login Login to VAmPI GET /users/v1/{username} Displays user by username DELETE /users/v1/{username} Deletes user by username (Only Admins) PUT /users/v1/{username}/email Update a single users email PUT /users/v1/{username}/password Update users password GET /books/v1 Retrieves all books POST /books/v1 Add new book GET /books/v1/{book} Retrieves book by title along with secret
For more details you can use a service like the swagger editor supplying it the OpenAPI specification which can be found in the directory
openapi_specs. List of Vulnerabilities* SQLi Injection* Unauthorized Password Change
* Broken Object Level Authorization
* Mass Assignment
* Excessive Data Exposure through debug endpoint
* User and Password Enumeration
* RegexDOS (Denial of Service)
* Lack of Resources & Rate Limiting Run itIt is a Flask application so in order to run it you can install all requirements and then run the
app.py. To install all requirements simply run pip3 install -r requirements.txtand then python3 app.py.Or if you prefer you can also run it through docker or docker compose. Run it through DockerBuild with
docker build -t vampi_docker:latest . and Run (remove the -d if you want to see the output in your terminal) docker run -d -p 5000:5000 vampi_docker:latest [Note: if you run Docker on newer versions of the MacOS, use -p 5001:5000to avoid conflicting with the AirPlay Receiver service. Alternatively, you could disable the AirPlay Receiver service in your System Preferences -> Sharing settings.] Run it through Docker ComposeAssuming you've built the container per the above steps, run one instance securely (port 5001) and another insecurely (port 5002): docker compose up -d Customizing token timeout and vulnerable environment or notIf you would like to alter the timeout of the token created after login or if you want to change th[...]___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
VAmPI - Vulnerable REST API With OWASP Top 10 Vulnerabilities For Security Testing
Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! VAmPI - Vulnerable REST API With OWASP Top 10 Vulnerabilities For Security Testing https://blogger.googleusercontent.com/img/a/AVvXsEiWkXGsybGWZUFpzkXOC_NJd4CzE6cH17TIxQ1Nqufn4lPbV4MDeFlPjFi4F3uT1aLy-GiXz0ER3msn0e9_jGzRc6VOePnLC…
e environment not to be vulnerable then you can use a few ways depending how you run the application.
* If you run it like normal with
* If you run it through Docker, then you must either pass environment variables to the
*
Docker run example:
*
In the Dockerfile you will find two environment variables being set, the
___________________________
@hacking_Attack
@Hacking_Video
* If you run it like normal with
python3 app.pythen all you have to do is edit the aliveand vulnvariables defined in the app.pyitself. The alivevariable is measured in seconds, so if you put 100, then the token expires after 100 seconds. The vulnvariable is like boolean, if you set it to 1then the application is vulnerable, and if you set it to 0the application is not vulnerable.* If you run it through Docker, then you must either pass environment variables to the
docker runcommand or edit the Dockerfileand rebuild. *
Docker run example:
docker run -d -e vulnerable=0 -e tokentimetolive=300 -p 5000:5000 vampire_docker:latest* One nice feature to running it this way is you can startup a 2nd container with vulnerable=1on a different port and flip easily between the two.*
In the Dockerfile you will find two environment variables being set, the
ENV vulnerable=1and the ENV tokentimetolive=60. Feel free to change it before running the docker build command. Picture from freepik - www.freepik.com Download VAmPI___________________________
@hacking_Attack
@Hacking_Video
Response Manipulation in the Admin panel lead to PII leakage
https://7odamo.medium.com/response-manipulation-in-the-admin-panel-lead-to-pii-leakage-2926b89ea2d0?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://7odamo.medium.com/response-manipulation-in-the-admin-panel-lead-to-pii-leakage-2926b89ea2d0?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
Response Manipulation in the Admin panel lead to PII leakage
Hi there, 7odamo is here. Today I will talk about How I was able to view all the customer reports on UPS Admin Panel