Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.9K 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
Hi guys,First let me give a short information of me .I am 14 year old ,i am also learning cyber security.You can follow me on Twitter hereContinue reading on Medium » (https://tejasmn.medium.com/what-is-authentication-and-authorization-cd4e1b78d09d?source=rss------bug_bounty-5)
University Research & Development Project. !!Help Please!!
https://www.reddit.com/r/Pentesting/comments/o7j2do/university_research_development_project_help/

<!-- SC_OFF -->Hi All, I've taken on a research & development project In Cybersecurity at Edge Hill University, the title of my project is "Cybersecurity & COVID-19" I am doing research to identify if cybercrime increased due to the pandemic! I have created a survey to get some results from users who may have suffered a cyberattack! The survey is multiple choice, bar 1 question. I thank you all in advance! https://forms.gle/7WEVDHqdXAwPPEJ5A <!-- SC_ON --> submitted by /u/ImJustBeasting (https://www.reddit.com/user/ImJustBeasting)
[link] (https://www.reddit.com/r/Pentesting/comments/o7j2do/university_research_development_project_help/) [comments] (https://www.reddit.com/r/Pentesting/comments/o7j2do/university_research_development_project_help/)
Increasing Need For Cybersecurity Professionals

Continue reading on Medium »
Read more...
WHAT is Authentication and Authorization

Hi guys,First let me give a short information of me .I am 14 year old ,i am also learning cyber security.You can follow me on Twitter hereContinue reading on Medium »
Read more...
hacking: security in practice
How do I clone a software (asp .net Mvc)

I have a ERP software, provided by a third party IT company but due to their issues they shut down their company. So we somehow managed to get the database from them and setup the server in our office. But we couldn’t get the source code. Is there any way we can clone the same software or get source code of the same? We have the installation files too and the entire database on sql. Please suggest . Is it possible to develop a new web based software and connecting data base to it ?

submitted by /u/Opposite-Bid-5806
[link] [comments]
Sent by @TheFeedReaderBot
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
xWin Finance Incident: Root Cause Analysis

https://cdn-images-1.medium.com/max/936/1*3PhvRBp-xT-4YQvn1sgWjw.png
Started at Jun-25–2021 12:07:25 AM +UTC, xWin Finance was exploited and the attacker gained about $270k. This incident was due to an…

Continue reading on Medium »
RomBuster - A Router Exploitation Tool That Allows To Disclosure Network Router Admin Password

RomBuster is a router exploitation tool that allows to disclosure network router admin password. Features Exploits vulnerabilities in most popular routers such as D-Link, Zyxel, TP-Link and Huawei. Optimized to exploit multiple routers at one time from list with threading enabled. Simple CLI and API usage. Installation pip3 install git+https://github.com/EntySec/RomBuster Basic usage To use RomBuster just type rombuster in your terminal. exploitation tool that allows to disclosure network router admin password. optional arguments: -h, --help show this help message and exit -t, --threads Use threads for fastest work. -o OUTPUT, --output OUTPUT Output result to file. -i INPUT, --input INPUT Input file of addresses. -a ADDRESS, --address ADDRESS Single address. --shodan SHODAN Shodan API key for exploiting devices over Internet. --zoomeye ZOOMEYE ZoomEye API key for exploiting devices over Internet. -p PAGES, --pages PAGES Number of pages you want to get from ZoomEye. ">usage: rombuster -h -t -o OUTPUT -i INPUT -a ADDRESS --shodan SHODAN --zoomeye ZOOMEYE -p PAGESRomBuster is a router exploitation tool that allows to disclosure networkrouter admin password.optional arguments: -h, --help show this help message and exit -t, --threads Use threads for fastest work. -o OUTPUT, --output OUTPUT Output result to file. -i INPUT, --input INPUT Input file of addresses. -a ADDRESS, --address ADDRESS Single address. --shodan SHODAN Shodan API key for exploiting devices over Internet. --zoomeye ZOOMEYE ZoomEye API key for exploiting devices over Internet. -p PAGES, --pages PAGES Number of pages you want to get from ZoomEye. Examples Exploiting single router Let's hack my router just for fun. rombuster -a 192.168.99.1 Exploiting routers from Internet Let's try to use Shodan search engine to exploit routers over Internet, we will use it with -t for fast exploitation. rombuster -t --shodan PSKINdQe1GyxGgecYz2191H2JoS9qvgD NOTE: Given Shodan API key (PSKINdQe1GyxGgecYz2191H2JoS9qvgD) is my PRO API key, you can use this key or your own, be free to use all our resources for free :) Exploiting routers from input file Let's try to use opened database of routers with -t for fast exploitation. rombuster -t -i routers.txt -o passwords.txt NOTE: It will exploit all routers in routers.txt list by their addresses and save all obtained passwords to passwords.txt. API usage RomBuster also has their own Python API that can be invoked by importing RomBuster to your code. from rombuster import RomBuster Basic functions There are all RomBuster basic functions that can be used to exploit specified router. exploit(address) - Exploit single router by given address. Examples Exploiting single router from rombuster import RomBusterrombuster = RomBuster()creds = rombuster.exploit('192.168.99.100')print(creds) Download RomBuster
Read more...