hacking: security in practice
How do I brute force my admin's passcode on Windows 10?
I'm trying to hack into my parent's account, but I can't seem to find a way (without installing any crap) on how to do it (Maybe with CMD, Python...) If you could help me, I'd appreciate it if you let a comment. Thank you!
submitted by /u/IguanaaaMBB
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
How do I brute force my admin's passcode on Windows 10?
I'm trying to hack into my parent's account, but I can't seem to find a way (without installing any crap) on how to do it (Maybe with CMD, Python...) If you could help me, I'd appreciate it if you let a comment. Thank you!
submitted by /u/IguanaaaMBB
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
How do I brute force my admin's passcode on Windows 10?
I'm trying to hack into my parent's account, but I can't seem to find a way (without installing any crap) on how to do it (Maybe with CMD,...
Nightingale - Docker Environment For Pentesting Which Having All The Required Tool For VAPT
http://www.kitploit.com/2022/06/nightingale-docker-environment-for.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2022/06/nightingale-docker-environment-for.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Nightingale - Docker Environment For Pentesting Which Having All The Required Tool For VAPT
In today's technological era, docker is the most powerful technology in each and every domain, whether it is Development, cyber security, DevOps, Automation, or Infrastructure. Considering the demand of the industry, I would like to introduce my idea to create a NIGHTINGALE: docker image for pentesters. This docker image is ready to use environment will the required tools that are needed at the time of pentesting on any of the scopes, whether it can be web application penetration testing, network penetration testing, mobile, API, OSINT, or Forensics. The best part is you can either create an altered docker image or pull the pre-built docker image from the hub. Some of the best features are listed below, I would highly recommend going through it and starting penetrating into the application. Link to access tool list : tool list (https://owasp.org/www-project-nightingale/)
Pros No need to install multiple programming language support and multiple modules. Booting process is very fast as per the virtualization (https://www.kitploit.com/search/label/Virtualization) concept. Need as per use resource of the host machine. All pre-install tools are installed and if you install any new software or tool use can go with that option. You can perform vulnerability assessment (https://www.kitploit.com/search/label/Vulnerability%20Assessment) and penetration testing (https://www.kitploit.com/search/label/Penetration%20Testing) of any scope. You can access this docker container via browser by calling your local address. Cons You can run the container over cloud server but can’t perform mobile pentesting. Creating tunnel with SSH can’t help you to provide the connection to your physical device or virtual environment. Why? The Reason behind creating this Docker file is to make a platform-independent penetration toolkit. It includes all the useful tools that will be required for a penetration tester (You can refer to the tool list section for the same). Architecture Diagram of the NIGHTINGALE. Diagram (https://github.com/RAJANAGORI/Nightingale/blob/main/assets/images/architecture.jpg) Docker Image Build and Run Take a clone of the repository git clone --depth 1 https://github.com/RAJANAGORI/Nightingale.git
Change the Directory cd Nightingale
Now build the Docker Image. docker build -t rajanagori/nightingale .
After Creating the Docker Image, Login into the image and Happy Hacking.... ;-) docker run -ti --hostname nightingale rajanagori/nightingale /bin/bash
Now, you can directly access Nightingale interactive terminal using the browser docker run -it -p 0.0.0.0:8080:7681 -d rajanagori/nightingale /home/binaries/ttyd -p 7681 bash
If you want to run MobSF along with the nightingale then I will give you good news now you can do the same....!! part 1 docker run -it -p 0.0.0.0:8080:7681 -p 0.0.0.0:8081:8081 -d rajanagori/nightingale /home/binaries/ttyd -p 7681 bash
part 2 cd /home/tools_mobile_vapt/Mobile-Security-Framework-MobSF/
source venv/bin/activate
./run 0.0.0.0:8081 &
Call your browser and hit 127.0.0.1:8080 for the nightingale terminal and 127.0.0.1:8081 for MobFs to become you will be prooo!!!! If you want to bind your host machine directory to your container directory then you can do the same. docker run -it -p 0.0.0.0:8080:7681 -p 0.0.0.0:8081:8081 -v /:/ -d rajanagori/nightingale /home/binaries/ttyd -p 7681 bash
For Localtunnel Hit 127.0.0.1:8080 in your browser and you will be able to access the Nightingale terminal Now, run the following command in your terminal nvm install v16.14.0 && npm install -g localtunnel
and hit this command lt --port 7681 --subdomain nightingale
Now, Click on the link generated and have fun with Nightingale !!! To start, Restart and Stop the Postgresql database To start the service service postgresql start
To Restart the service service postgresql restart
___________________________
@hacking_Attack
@Hacking_Video
Pros No need to install multiple programming language support and multiple modules. Booting process is very fast as per the virtualization (https://www.kitploit.com/search/label/Virtualization) concept. Need as per use resource of the host machine. All pre-install tools are installed and if you install any new software or tool use can go with that option. You can perform vulnerability assessment (https://www.kitploit.com/search/label/Vulnerability%20Assessment) and penetration testing (https://www.kitploit.com/search/label/Penetration%20Testing) of any scope. You can access this docker container via browser by calling your local address. Cons You can run the container over cloud server but can’t perform mobile pentesting. Creating tunnel with SSH can’t help you to provide the connection to your physical device or virtual environment. Why? The Reason behind creating this Docker file is to make a platform-independent penetration toolkit. It includes all the useful tools that will be required for a penetration tester (You can refer to the tool list section for the same). Architecture Diagram of the NIGHTINGALE. Diagram (https://github.com/RAJANAGORI/Nightingale/blob/main/assets/images/architecture.jpg) Docker Image Build and Run Take a clone of the repository git clone --depth 1 https://github.com/RAJANAGORI/Nightingale.git
Change the Directory cd Nightingale
Now build the Docker Image. docker build -t rajanagori/nightingale .
After Creating the Docker Image, Login into the image and Happy Hacking.... ;-) docker run -ti --hostname nightingale rajanagori/nightingale /bin/bash
Now, you can directly access Nightingale interactive terminal using the browser docker run -it -p 0.0.0.0:8080:7681 -d rajanagori/nightingale /home/binaries/ttyd -p 7681 bash
If you want to run MobSF along with the nightingale then I will give you good news now you can do the same....!! part 1 docker run -it -p 0.0.0.0:8080:7681 -p 0.0.0.0:8081:8081 -d rajanagori/nightingale /home/binaries/ttyd -p 7681 bash
part 2 cd /home/tools_mobile_vapt/Mobile-Security-Framework-MobSF/
source venv/bin/activate
./run 0.0.0.0:8081 &
Call your browser and hit 127.0.0.1:8080 for the nightingale terminal and 127.0.0.1:8081 for MobFs to become you will be prooo!!!! If you want to bind your host machine directory to your container directory then you can do the same. docker run -it -p 0.0.0.0:8080:7681 -p 0.0.0.0:8081:8081 -v /:/ -d rajanagori/nightingale /home/binaries/ttyd -p 7681 bash
For Localtunnel Hit 127.0.0.1:8080 in your browser and you will be able to access the Nightingale terminal Now, run the following command in your terminal nvm install v16.14.0 && npm install -g localtunnel
and hit this command lt --port 7681 --subdomain nightingale
Now, Click on the link generated and have fun with Nightingale !!! To start, Restart and Stop the Postgresql database To start the service service postgresql start
To Restart the service service postgresql restart
___________________________
@hacking_Attack
@Hacking_Video
owasp.org
OWASP Nightingale | OWASP Foundation
OWASP Nightingale on the main website for The OWASP Foundation. OWASP is a nonprofit foundation that works to improve the security of software.
To Stop the service service postgresql stop
Note: Use of Postgresql is for msfConsole. Please feel free to contribute to the tool
Download Nightingale (https://github.com/RAJANAGORI/Nightingale)
___________________________
@hacking_Attack
@Hacking_Video
Note: Use of Postgresql is for msfConsole. Please feel free to contribute to the tool
Download Nightingale (https://github.com/RAJANAGORI/Nightingale)
___________________________
@hacking_Attack
@Hacking_Video
GitHub
GitHub - RAJANAGORI/Nightingale: Nightingale Docker for Pentesters is a comprehensive Dockerized environment tailored for penetration…
Nightingale Docker for Pentesters is a comprehensive Dockerized environment tailored for penetration testing and vulnerability assessment. It comes preconfigured with all essential tools and utilit...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
30K Microsoft Exchange Servers Again Vulnerable to New Tactics
https://cdn-images-1.medium.com/max/640/0*g_HP2BA0XhJU8PTm.jpg
30K Microsoft Exchange Servers Again Vulnerable to New Tactics
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
30K Microsoft Exchange Servers Again Vulnerable to New Tactics
https://cdn-images-1.medium.com/max/640/0*g_HP2BA0XhJU8PTm.jpg
30K Microsoft Exchange Servers Again Vulnerable to New Tactics
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
30K Microsoft Exchange Servers Again Vulnerable to New Tactics
30K Microsoft Exchange Servers Again Vulnerable to New Tactics
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Write-up: Exploiting XSS to perform CSRF @ PortSwigger Academy
https://cdn-images-1.medium.com/max/843/0*s6LonCiraQMIGw7z.png
This write-up for the lab Exploiting XSS to perform CSRF is part of my walk-through series for PortSwigger’s Web Security Academy.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Write-up: Exploiting XSS to perform CSRF @ PortSwigger Academy
https://cdn-images-1.medium.com/max/843/0*s6LonCiraQMIGw7z.png
This write-up for the lab Exploiting XSS to perform CSRF is part of my walk-through series for PortSwigger’s Web Security Academy.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Write-up: Exploiting XSS to perform CSRF @ PortSwigger Academy
This write-up for the lab Exploiting XSS to perform CSRF is part of my walk-through series for PortSwigger’s Web Security Academy.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Frauds on Instagram (Part 1)
https://cdn-images-1.medium.com/max/2500/1*4eLj9bArS2MDm_Z9EZ4cpQ.png
I would love to call them Frauds instead of hackers because they are using cheap social engineering tricks to manipulate naïve people and…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Frauds on Instagram (Part 1)
https://cdn-images-1.medium.com/max/2500/1*4eLj9bArS2MDm_Z9EZ4cpQ.png
I would love to call them Frauds instead of hackers because they are using cheap social engineering tricks to manipulate naïve people and…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Frauds on Instagram (Part 1)
I would love to call them Frauds instead of hackers because they are using cheap social engineering tricks to manipulate naïve people and…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Let’s learn WebApp Pentest from basic on DVWA. From setup to hack. Part6. File Upload(Low to High).
https://cdn-images-1.medium.com/max/891/1*gZgpv8GEgKE1J_9IseqZtA.png
Hey all. How are you doing?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Let’s learn WebApp Pentest from basic on DVWA. From setup to hack. Part6. File Upload(Low to High).
https://cdn-images-1.medium.com/max/891/1*gZgpv8GEgKE1J_9IseqZtA.png
Hey all. How are you doing?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Let’s learn WebApp Pentest from basic on DVWA. From setup to hack. Part6. File Upload(Low to High).
Hey all. How are you doing?
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Safeguarding Your Crypto Holdings
Recently I became a victim of a metamask hack. After giving some time to myself and getting back in control, I decided to do a lot of…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Safeguarding Your Crypto Holdings
Recently I became a victim of a metamask hack. After giving some time to myself and getting back in control, I decided to do a lot of…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Safeguarding Your Crypto Holdings
Recently I became a victim of a metamask hack. After giving some time to myself and getting back in control, I decided to do a lot of…
OAuth Misconfiguration Leads To Pre-Account Takeover
https://medium.com/@deepmarketer/oauth-misconfiguration-leads-to-pre-account-takeover-8f94c1ef50be?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@deepmarketer/oauth-misconfiguration-leads-to-pre-account-takeover-8f94c1ef50be?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
OAuth Misconfiguration Leads To Pre-Account Takeover
Hello,
Hello,Continue reading on Medium » (https://medium.com/@deepmarketer/oauth-misconfiguration-leads-to-pre-account-takeover-8f94c1ef50be?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
OAuth Misconfiguration Leads To Pre-Account Takeover
Hello,
KitPloit - PenTest Tools!
Nightingale - Docker Environment For Pentesting Which Having All The Required Tool For VAPT
___________________________
@hacking_Attack
@Hacking_Video
Nightingale - Docker Environment For Pentesting Which Having All The Required Tool For VAPT
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Nightingale - Docker Environment For Pentesting Which Having All The Required Tool For VAPT
hacking: security in practice
IoT Hacking Resources
I'm looking into learning how to 'hack all the things', ie security and hacking for IoT devices. I'm vaguely familiar with the Zwave and Zigbee protocols, but am looking to learn more.
Does anyone have any books/videos/CTFs/blogs/websites/any other resources that explore IoT security?
submitted by /u/pineapplefucker420
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
IoT Hacking Resources
I'm looking into learning how to 'hack all the things', ie security and hacking for IoT devices. I'm vaguely familiar with the Zwave and Zigbee protocols, but am looking to learn more.
Does anyone have any books/videos/CTFs/blogs/websites/any other resources that explore IoT security?
submitted by /u/pineapplefucker420
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
IoT Hacking Resources
I'm looking into learning how to 'hack all the things', ie security and hacking for IoT devices. I'm vaguely familiar with the Zwave and Zigbee...