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
Implement weighted-words system.Create options to custom case transforms (e.g.: disable pair/odd transforms).Lyricpass integration was upgraded to last version released by initstring, but still needs some tweaks to speed up the search process (I would appreciate any help).
Legal disclaimer
This tool is created for the sole purpose of security awareness and education, it should not be used against systems that you do not have permission to test/attack. The author is not responsible for misuse or for any damage that you may cause. You agree that you use this software at your own risk.

Download Bopscrk (https://github.com/r3nt0n/bopscrk)

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Bopscrk - Tool To Generate Smart And Powerful Wordlists

https://1.bp.blogspot.com/-1WKRkUvcAQE/YVi1ep5MKJI/AAAAAAAAvUg/u2-eaiTCXCclu_67LGolDlVVOLqVC4LzQCNcBGAsYHQ/w640-h260/bopscrk_8_bopscrk-2.png bopscrk (Before Outset PaSsword CRacKing) is a tool to generate smart and powerful wordlists for targeted attacks.

Included in BlackArch Linux pentesting distribution and Rawsec's Cybersecurity Inventory since August 2019.

*
Targeted-attack wordlist creator: introduce personal info related to target, combines every word and transforms results into possible passwords. The lyricpass module allows to search lyrics related to artists and include them to the wordlists.

*
Customizable case and leet transforms: create custom charsets and transforms patterns trough a simple config file.

*
Wordlists exclusion: Exclude words from another wordlist (to avoid passwords that you have already tested).

*
Interactive mode and one-line command interface supported. Requirements* Python 3 (secondary branch keeps Python 2.7 legacy support)
* optional - to use lyricpassmodule: pip install requirements.txtUsage-h, --help show this help message and exit
-i, --interactive interactive mode, the script will ask you about target
-w words to combine comma-separated (non-interactive mode)
--min min length for the words to generate (default: 4)
--max max length for the words to generate (default: 32)
-c, --case enable case transformations
-l, --leet enable leet transformations
-n max amount of words to combine each time (default: 2)
-a , --artists artists to search song lyrics (comma-separated)
-x , --exclude exclude all the words included in other wordlists
(several wordlists should be comma-separated)
-o , --output output file to save the wordlist (default: tmp.txt)
-C , --config specify config file to use (default: ./bopscrk.cfg)
How it works* You have to provide some words which will act as a base.
* The lyricpass feature allows to introduce artists. The tool will download all his songs' lyrics and each line will be added as a new word. By default, artist names and a word formed by the initial of word on each phrase, will be added too.
* The tool will generate all possible combinations between them.
* To generate more combinations, it will add some common separators (e.g. "-", "_", "."), numbers and special chars frequently used in passwords.
* You can use leet and case transforms to increase your chances.
* You can provide wordlists that you have already tested against the target in order to exclude all this words from the resultant wordlist (-x). Tips* Fields can be left empty.
* You can use accentuation in your words.
* In the others field you can write several words comma-separated. Example: 2C,Flipper.
* If you want to produce all possible leet transformations, enable the recursive_leet option in configuration file.
* You can select which transforms to apply on lyrics phrases found trough the cfg file.
* Using the non-interactive mode, you should provide years in the long and short way (1970,70) to get the same result than the interactive mode.
* You have to be careful with -n argument. If you set a big value, it could result in too huge wordlists. I recommend values between 2 and 5.
* To provide several artist names through command line you should provides it comma-separated. Example: -a johndoe,johnsmith* To provide artist names with spaces through command line you should provides it quotes-enclosed. Example: -a "john doe,john smith"Lyricpasshttps://1.bp.blogspot.com/-1WKRkUvcAQE/YVi1ep5MKJI/AAAAAAAAvUg/u2-eaiTCXCclu_67LGolDlVVOLqVC4LzQCNcBGAsYHQ/w640-h260/bopscrk_[...]

___________________________
@hacking_Attack
@Hacking_Video
Dark Reading: Attacks/Breaches
Top 5 Skills Modern SOC Teams Need to Succeed

From basic coding to threat hunting, here are five skills modern SOC teams need to successfully navigate the future of high-scale detection and response.

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
phishing is useless

I've been learning ethical hacking in my free time and as a test i tried the phishing attack on my other gmail account. Firstly even if the hacker got access to the email password there is no way for him to actually use it because Google sent me a verification as soon as i tried to login. So anyone who falls for this can still decide if the hacker gets access to the email or not.

im still new to all this. lemme know if im wrong.

edit: just found out about evilginx2

submitted by /u/ball-sack-patato
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
PoW-Shield : Project Dedicated To Fight DDoS And Spam With Proof Of Work, Featuring An Additional WA

PoW-Shield provides DDoS protection on OSI application layer by acting as a proxy that utilizes proof of work between the backend service and the end user. This project aims to provide an alternative to general captcha methods such as Google’s ReCaptcha that has always been a pain to solve. Accessing a web service protected by PoW Shield has never been easier, simply go to the url, and your browser will do the rest of the verification automatically for you.

PoW Shield aims to provide the following services bundled in a single webapp / docker image:

* proof of work authentication
* ratelimiting and ip blacklisting
* web application firewall

Story on Medium

How It Works

So basically, PoW Shield works as a proxy in front of the actual web app/service. It conducts verification via proof-of-work and only proxies authorized traffic through to the actual server. The proxy is easily installable, and is capable of protecting low security applications with a WAF.

Here’s what happens behind the scenes when a user browses a PoW Shield-protected webservice:

* The server generates a random hex-encoded “prefix” and sends it along with the PoW Shield page to the client.
* Browser JavaScript on the client side then attempts to brute-force a “nonce” that when appended with the prefix, can produce a SHA256 hash with the number of leading zero-bits more than the “difficulty” D specified by the server. i.e. SHA256(prefix + nonce)=0…0xxxx (binary, with more than D leading 0s)
* Client-side JavaScript then sends the calculated nonce to the server for verification, if verification passes, the server generates a cookie for the client to pass authentication.
* The server starts proxying the now authenticated client traffic to the server with WAF filtering enabled.

Usage

nodejs and docker

Configuration

environment variables

Features

* Web Service Structure
* Proxy Functionality
* PoW Implementation
* Dockerization
* IP Blacklisting
* Ratelimiting
* Unit Testing
* WAF Implementation
* Multi-Instance Syncing (Redis)
Download

___________________________
@hacking_Attack
@Hacking_Video
Dark Reading: Attacks/Breaches
Mandiant Confirms Name Change from FireEye, Inc. to Mandiant, Inc.

The decision to change the corporate name and stock ticker symbol reflects the company’s strategy to focus on Mandiant’s security controls-agnostic solutions delivered through the Mandiant Advantage cloud-based platform.
Sent by @TheFeedReaderBot

___________________________
@hacking_Attack
@Hacking_Video