Goldfinch Community Announces $500k Bug Bounty Program, through Immunefi
https://medium.com/goldfinch-fi/goldfinch-community-announces-500k-bug-bounty-program-through-immunefi-32a8d24ec70f?source=rss------bug_bounty-5
Continue reading on goldfinch_fi » (https://medium.com/goldfinch-fi/goldfinch-community-announces-500k-bug-bounty-program-through-immunefi-32a8d24ec70f?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/goldfinch-fi/goldfinch-community-announces-500k-bug-bounty-program-through-immunefi-32a8d24ec70f?source=rss------bug_bounty-5
Continue reading on goldfinch_fi » (https://medium.com/goldfinch-fi/goldfinch-community-announces-500k-bug-bounty-program-through-immunefi-32a8d24ec70f?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
Medium
Goldfinch Community Announces $500k Bug Bounty Program, through Immunefi
In line with Goldfinch communities’ focus on security, the protocol has partnered with Immunefi to run a $500k bug bounty program. The program begins immediately, and will run continuously. The…
hacking: security in practice
Trying to raise my Hubstaff activity level
So I work from home and we have to use this software that records mouse and keyboard activity, along with what programs you have open and what websites you visit.
I was wondering if there was a way to step away from the computer a bit and run a script where it moves the mouse around and types some stuff on the keyboard. Though I've researched a bit and am not sure if Hubstaff can detect this stuff and report it.
I'd appreciate any insight or help.
submitted by /u/Charles157
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Trying to raise my Hubstaff activity level
So I work from home and we have to use this software that records mouse and keyboard activity, along with what programs you have open and what websites you visit.
I was wondering if there was a way to step away from the computer a bit and run a script where it moves the mouse around and types some stuff on the keyboard. Though I've researched a bit and am not sure if Hubstaff can detect this stuff and report it.
I'd appreciate any insight or help.
submitted by /u/Charles157
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Trying to raise my Hubstaff activity level
So I work from home and we have to use this software that records mouse and keyboard activity, along with what programs you have open and what...
hacking: security in practice
Which certificates are good for finding work as an ethical hacker?
Hello, I am 16 and I'm writing here because I want to start learning hacking. I have a little experience with IT, but I will do my best to improve and learn new things. My question is: if I get the right skills to become an hacker, then which exams I have to take to improve my curriculum as a worker? I know certificates don't determine if you are good or bad, but i think they are essential to get hired. If you don't have certifications, what do you write on your curriculum?
Sorry for the bad grammar, I'm not that good at english. Thanks to anyone who will answer :)
submitted by /u/Dieaaal_
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Which certificates are good for finding work as an ethical hacker?
Hello, I am 16 and I'm writing here because I want to start learning hacking. I have a little experience with IT, but I will do my best to improve and learn new things. My question is: if I get the right skills to become an hacker, then which exams I have to take to improve my curriculum as a worker? I know certificates don't determine if you are good or bad, but i think they are essential to get hired. If you don't have certifications, what do you write on your curriculum?
Sorry for the bad grammar, I'm not that good at english. Thanks to anyone who will answer :)
submitted by /u/Dieaaal_
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Reddit
From the hacking community on Reddit
Explore this post and more from the hacking community
WWWGrep - OWASP Foundation Web Respository
http://www.kitploit.com/2021/09/wwwgrep-owasp-foundation-web-respository.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2021/09/wwwgrep-owasp-foundation-web-respository.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
WWWGrep - OWASP Foundation Web Respository
WWWGrep is a rapid search “grepping” mechanism that examines HTML elements by type and permits focused (single), multiple (file based URLs) and recursive (with respect to root domain or not) searches to be performed. Header names and values may also be recursively searched in this manner. WWWGrep was designed to help both breakers and builders to quickly examine code bases under inspection, some use cases and examples are shown below.
Installation ">git clone
pip3 install -r requirements.txt
python3 wwwgrep.py
Dependencies (pip3 install -r requirements.txt) - Python 3.5+
- BeautifulSoup 4
- UrlLib.parse
- requests_html
- argparse
- requests
- re
- os.path
Breakers
Quickly locate login pages by searching for input fields named “username” or “password” on a site an using a recursion flag Quickly check headers for the use of specific technologies Quickly locate cookies and JWT tokens by search response headers Use with a proxy tool to automate recursion through a set links rapidly Locate all input sinks on a page (or site) by search for input fields and parameter processing symbology Locate all developer comments on a page to identify commented out code (or To Do’s) Quickly test consistency of site controls implemented during recursion (headers, HSTS, CSP etc) Quickly find vulnerable (https://www.kitploit.com/search/label/Vulnerable) JavaScript code present in web pages Identify API tokens and access keys present in page code
Builders
Quickly test multiple sites under management (https://www.kitploit.com/search/label/Management) for the use of vulnerable code Quickly test multiple sites under management for the use of vulnerable frameworks/technologies Find sites which may share a common codebase to determine the impact of flaws/vulnerabilities Find sites which share a common authentication (https://www.kitploit.com/search/label/Authentication) token (header auth token) Find sites which may contain developer comments for server hygiene purposes
Command line switches
wwwgrep.py [target/file] [search_string] [search params/criteria/recursion etc]
: format -pp --http-proxy Specify a proxy for the HTTP protocol in http://: format -hu --user-agent Specify a string to use as the user agent in the request -ha --auth-header Specify a bearer token or other auth string to use in the request header Search Parameters -s --all Search all page HTML and scripts for terms that match the search specification -sr --relative Search page links that match the search specification as relative URLs -sa --absolute Search page links that match the search specification as absolute URLs -si --input-fields Search page input fields that match the search specification -ss --scripts Search scripts tags that match the search specification -st --text Search visible text on the page that matches the search specification -sc --comments Search comments on the page that match the search specification -sm --meta Search in page metadata for matches to the search specification -sf --hidden Search in hidden fields for specific matches to the search specification -sh --header-name Search response headers for specific matches to the search specification -sv --header-value Search response header values for specific matches to the search specification ">Search Inputs
search_string Specify the string to search for or alternatively “”
for all objects of type specified in search parameters
-t --target Specify a single URL as a target for the search
-f --file Specify a file containing a list of URLs to search
Recursion
-rr --recurse-root Limits URL recursion to the domain provided in the target
-ra --recurse-any Allows recursion to extend beyond the domain of the target
Matching Criteria
-i --ignore-case Performs case insensitive matching (default is to respect case)
-d --dedupe Allow duplicate findings per page (default is to de-duplicate findings)
___________________________
@hacking_Attack
@Hacking_Video
Installation ">git clone
pip3 install -r requirements.txt
python3 wwwgrep.py
Dependencies (pip3 install -r requirements.txt) - Python 3.5+
- BeautifulSoup 4
- UrlLib.parse
- requests_html
- argparse
- requests
- re
- os.path
Breakers
Quickly locate login pages by searching for input fields named “username” or “password” on a site an using a recursion flag Quickly check headers for the use of specific technologies Quickly locate cookies and JWT tokens by search response headers Use with a proxy tool to automate recursion through a set links rapidly Locate all input sinks on a page (or site) by search for input fields and parameter processing symbology Locate all developer comments on a page to identify commented out code (or To Do’s) Quickly test consistency of site controls implemented during recursion (headers, HSTS, CSP etc) Quickly find vulnerable (https://www.kitploit.com/search/label/Vulnerable) JavaScript code present in web pages Identify API tokens and access keys present in page code
Builders
Quickly test multiple sites under management (https://www.kitploit.com/search/label/Management) for the use of vulnerable code Quickly test multiple sites under management for the use of vulnerable frameworks/technologies Find sites which may share a common codebase to determine the impact of flaws/vulnerabilities Find sites which share a common authentication (https://www.kitploit.com/search/label/Authentication) token (header auth token) Find sites which may contain developer comments for server hygiene purposes
Command line switches
wwwgrep.py [target/file] [search_string] [search params/criteria/recursion etc]
: format -pp --http-proxy Specify a proxy for the HTTP protocol in http://: format -hu --user-agent Specify a string to use as the user agent in the request -ha --auth-header Specify a bearer token or other auth string to use in the request header Search Parameters -s --all Search all page HTML and scripts for terms that match the search specification -sr --relative Search page links that match the search specification as relative URLs -sa --absolute Search page links that match the search specification as absolute URLs -si --input-fields Search page input fields that match the search specification -ss --scripts Search scripts tags that match the search specification -st --text Search visible text on the page that matches the search specification -sc --comments Search comments on the page that match the search specification -sm --meta Search in page metadata for matches to the search specification -sf --hidden Search in hidden fields for specific matches to the search specification -sh --header-name Search response headers for specific matches to the search specification -sv --header-value Search response header values for specific matches to the search specification ">Search Inputs
search_string Specify the string to search for or alternatively “”
for all objects of type specified in search parameters
-t --target Specify a single URL as a target for the search
-f --file Specify a file containing a list of URLs to search
Recursion
-rr --recurse-root Limits URL recursion to the domain provided in the target
-ra --recurse-any Allows recursion to extend beyond the domain of the target
Matching Criteria
-i --ignore-case Performs case insensitive matching (default is to respect case)
-d --dedupe Allow duplicate findings per page (default is to de-duplicate findings)
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Leading source of security tools, hacking tools, cybersecurity and network security. Learn about new tools and updates in one place.
-r --no-redirects Do not allow redirects (default is to allow redirects)
-b --no-base-url Omit the URL of the match from the output (default is to include the URL)
-x --regex Allows the use of RegEX matches (search_string is treated as a RegEX, default is off)
-e --separator Specify and output specifier (default is : )
-j --java-render Turns on JavaScript rendering of page objects and text (default is off)
-p --linked-js-on Turns on searching of linked (script src tags) Java Script (default is off)
Request Parameters
-ps --https-proxy Specify a proxy for the HTTPS protocol in https://: format
-pp --http-proxy Specify a proxy for the HTTP protocol in http://: format
-hu --user-agent Specify a string to use as the user agent in the request
-ha --auth-header Specify a bearer token or other auth string to use in the request header
Search Parameters
-s --all Search all page HTML and scripts for terms that match the search specification
-sr --relative Search page links that match the search specification as relative URLs
-sa --absolute Search page links that match the search specification as absolute URLs
-si --input-fields S earch page input fields that match the search specification
-ss --scripts Search scripts tags that match the search specification
-st --text Search visible text on the page that matches the search specification
-sc --comments Search comments on the page that match the search specification
-sm --meta Search in page metadata for matches to the search specification
-sf --hidden Search in hidden fields for specific matches to the search specification
-sh --header-name Search response headers for specific matches to the search specification
-sv --header-value Search response header values for specific matches to the search specification
Examples of use:
Find all input fields named login on a site recursively while not leaving the root domain without case sensitivity in the match wwwgrep.py -t https://www.target.com -i -si “login” -rr Find all comments containing the term “to do” on all pages in a site wwwgrep.py -t https://www.target.com -i -sc “to do” -rr Find all comments on a specific web page wwwgrep.py -t https://www.target.com/some_page -i -sc “” Find all hidden fields within a list of web applications contained in the file input.txt using site recursion wwwgrep.py -f input.txt -sf “” -rr
Download Wwwgrep (https://github.com/OWASP/wwwgrep)
___________________________
@hacking_Attack
@Hacking_Video
-b --no-base-url Omit the URL of the match from the output (default is to include the URL)
-x --regex Allows the use of RegEX matches (search_string is treated as a RegEX, default is off)
-e --separator Specify and output specifier (default is : )
-j --java-render Turns on JavaScript rendering of page objects and text (default is off)
-p --linked-js-on Turns on searching of linked (script src tags) Java Script (default is off)
Request Parameters
-ps --https-proxy Specify a proxy for the HTTPS protocol in https://: format
-pp --http-proxy Specify a proxy for the HTTP protocol in http://: format
-hu --user-agent Specify a string to use as the user agent in the request
-ha --auth-header Specify a bearer token or other auth string to use in the request header
Search Parameters
-s --all Search all page HTML and scripts for terms that match the search specification
-sr --relative Search page links that match the search specification as relative URLs
-sa --absolute Search page links that match the search specification as absolute URLs
-si --input-fields S earch page input fields that match the search specification
-ss --scripts Search scripts tags that match the search specification
-st --text Search visible text on the page that matches the search specification
-sc --comments Search comments on the page that match the search specification
-sm --meta Search in page metadata for matches to the search specification
-sf --hidden Search in hidden fields for specific matches to the search specification
-sh --header-name Search response headers for specific matches to the search specification
-sv --header-value Search response header values for specific matches to the search specification
Examples of use:
Find all input fields named login on a site recursively while not leaving the root domain without case sensitivity in the match wwwgrep.py -t https://www.target.com -i -si “login” -rr Find all comments containing the term “to do” on all pages in a site wwwgrep.py -t https://www.target.com -i -sc “to do” -rr Find all comments on a specific web page wwwgrep.py -t https://www.target.com/some_page -i -sc “” Find all hidden fields within a list of web applications contained in the file input.txt using site recursion wwwgrep.py -f input.txt -sf “” -rr
Download Wwwgrep (https://github.com/OWASP/wwwgrep)
___________________________
@hacking_Attack
@Hacking_Video
Target
Target : Expect More. Pay Less.
Shop Target online and in-store for everything from groceries and essentials to clothing and electronics. Choose contactless pickup or delivery today.
Goldfinch Community Announces $500k Bug Bounty Program, through Immunefi
Continue reading on goldfinch_fi »
Read more...
Continue reading on goldfinch_fi »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
source
photo
https://1.bp.blogspot.com/-LCTv-onjDL4/YTq40wtG_uI/AAAAAAAAulk/KGxLZkJ5hmgyHonTr_leuXHV1Wztq_7YACNcBGAsYHQ/w640-h480/wwwgrep.png
WWWGrep is a rapid search “grepping” mechanism that examines HTML elements by type and permits focused (single), multiple (file based URLs) and recursive (with respect to root domain or not) searches to be performed. Header names and values may also be recursively searched in this manner. WWWGrep was designed to help both breakers and builders to quickly examine code bases under inspection, some use cases and examples are shown below.
Installation
git clone
pip3 install -r requirements.txt
python3 wwwgrep.py
Dependencies (pip3 install -r requirements.txt)
Breakers
* Quickly locate login pages by searching for input fields named “username” or “password” on a site an using a recursion flag
* Quickly check headers for the use of specific technologies
* Quickly locate cookies and JWT tokens by search response headers
* Use with a proxy tool to automate recursion through a set links rapidly
* Locate all input sinks on a page (or site) by search for input fields and parameter processing symbology
* Locate all developer comments on a page to identify commented out code (or To Do’s)
* Quickly test consistency of site controls implemented during recursion (headers, HSTS, CSP etc)
* Quickly find vulnerable JavaScript code present in web pages
* Identify API tokens and access keys present in page code
Builders
* Quickly test multiple sites under management for the use of vulnerable code
* Quickly test multiple sites under management for the use of vulnerable frameworks/technologies
* Find sites which may share a common codebase to determine the impact of flaws/vulnerabilities
* Find sites which share a common authentication token (header auth token)
* Find sites which may contain developer comments for server hygiene purposes
Command line switches
___________________________
@hacking_Attack
@Hacking_Video
source
photo
https://1.bp.blogspot.com/-LCTv-onjDL4/YTq40wtG_uI/AAAAAAAAulk/KGxLZkJ5hmgyHonTr_leuXHV1Wztq_7YACNcBGAsYHQ/w640-h480/wwwgrep.png
WWWGrep is a rapid search “grepping” mechanism that examines HTML elements by type and permits focused (single), multiple (file based URLs) and recursive (with respect to root domain or not) searches to be performed. Header names and values may also be recursively searched in this manner. WWWGrep was designed to help both breakers and builders to quickly examine code bases under inspection, some use cases and examples are shown below.
Installation
git clone
pip3 install -r requirements.txt
python3 wwwgrep.py
Dependencies (pip3 install -r requirements.txt)
- Python 3.5+
- BeautifulSoup 4
- UrlLib.parse
- requests_html
- argparse
- requests
- re
- os.path
Breakers
* Quickly locate login pages by searching for input fields named “username” or “password” on a site an using a recursion flag
* Quickly check headers for the use of specific technologies
* Quickly locate cookies and JWT tokens by search response headers
* Use with a proxy tool to automate recursion through a set links rapidly
* Locate all input sinks on a page (or site) by search for input fields and parameter processing symbology
* Locate all developer comments on a page to identify commented out code (or To Do’s)
* Quickly test consistency of site controls implemented during recursion (headers, HSTS, CSP etc)
* Quickly find vulnerable JavaScript code present in web pages
* Identify API tokens and access keys present in page code
Builders
* Quickly test multiple sites under management for the use of vulnerable code
* Quickly test multiple sites under management for the use of vulnerable frameworks/technologies
* Find sites which may share a common codebase to determine the impact of flaws/vulnerabilities
* Find sites which share a common authentication token (header auth token)
* Find sites which may contain developer comments for server hygiene purposes
Command line switches
wwwgrep.py [target/file] [search_string] [search params/criteria/recursion etc]
[...]___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
WWWGrep - OWASP Foundation Web Respository
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
The top keywords used in phishing email subject lines
https://external-preview.redd.it/x4PyEtb0krJ6PmdFWVCEHlv6RvW3AGDcW87XMmJGFxo.jpg?width=640&crop=smart&auto=webp&s=98d3f24180a0972946c365963dedbe60688cd2ec submitted by /u/Anastasia_IT
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
The top keywords used in phishing email subject lines
https://external-preview.redd.it/x4PyEtb0krJ6PmdFWVCEHlv6RvW3AGDcW87XMmJGFxo.jpg?width=640&crop=smart&auto=webp&s=98d3f24180a0972946c365963dedbe60688cd2ec submitted by /u/Anastasia_IT
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
The top keywords used in phishing email subject lines
Posted in r/hacking by u/Anastasia_IT • 3 points and 0 comments
hacking: security in practice
What tools would someone use to exploit sweet32 vulnerability?
How would an attacker launch a birthday attack? Sorry if my questions aren't well phrased or if this is a dumb question, I'm a beginner
submitted by /u/alexgiann2
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
What tools would someone use to exploit sweet32 vulnerability?
How would an attacker launch a birthday attack? Sorry if my questions aren't well phrased or if this is a dumb question, I'm a beginner
submitted by /u/alexgiann2
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
What tools would someone use to exploit sweet32 vulnerability?
How would an attacker launch a birthday attack? Sorry if my questions aren't well phrased or if this is a dumb question, I'm a beginner
I've got a good buddy who's streaming on Twitch from time to time. Trying to help him out by getting some viewers that can give some input/collaboration help. He's working toward OSCP. Also he's a web app pen tester for a large company.
https://www.reddit.com/r/redteamsec/comments/plz2d9/ive_got_a_good_buddy_whos_streaming_on_twitch/
https://www.twitch.tv/beauknowstech submitted by /u/sfitzo (https://www.reddit.com/user/sfitzo)
[link] (https://www.reddit.com/r/redteamsec/comments/plz2d9/ive_got_a_good_buddy_whos_streaming_on_twitch/) [comments] (https://www.reddit.com/r/redteamsec/comments/plz2d9/ive_got_a_good_buddy_whos_streaming_on_twitch/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/redteamsec/comments/plz2d9/ive_got_a_good_buddy_whos_streaming_on_twitch/
https://www.twitch.tv/beauknowstech submitted by /u/sfitzo (https://www.reddit.com/user/sfitzo)
[link] (https://www.reddit.com/r/redteamsec/comments/plz2d9/ive_got_a_good_buddy_whos_streaming_on_twitch/) [comments] (https://www.reddit.com/r/redteamsec/comments/plz2d9/ive_got_a_good_buddy_whos_streaming_on_twitch/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
I've got a good buddy who's streaming on Twitch from time to time....
[https://www.twitch.tv/beauknowstech](https://www.twitch.tv/beauknowstech)
hacking: security in practice
Do you guys know an app like droidsheep or faceniff ?
I just want to spy on my mom's phone because it seems like she's cheating. We just connect on the same network and she won't even let me touch her phone. I can't use droidsheep or faceniff because my phone is not rooted. I'm afraid to root my phone. Thank you
submitted by /u/lie_be
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Do you guys know an app like droidsheep or faceniff ?
I just want to spy on my mom's phone because it seems like she's cheating. We just connect on the same network and she won't even let me touch her phone. I can't use droidsheep or faceniff because my phone is not rooted. I'm afraid to root my phone. Thank you
submitted by /u/lie_be
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Do you guys know an app like droidsheep or faceniff ?
I just want to spy on my mom's phone because it seems like she's cheating. We just connect on the same network and she won't even let me touch her...
hacking: security in practice
How do I know if my cellphone and computer have been hacked?
I have this suspicion that my brother hacked my devices, I think he is the network admin and did it by having access to them and hacking though the Wifi.
I think he is monitoring what I do.
submitted by /u/Necessary-Prize2300
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
How do I know if my cellphone and computer have been hacked?
I have this suspicion that my brother hacked my devices, I think he is the network admin and did it by having access to them and hacking though the Wifi.
I think he is monitoring what I do.
submitted by /u/Necessary-Prize2300
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
How do I know if my cellphone and computer have been hacked?
I have this suspicion that my brother hacked my devices, I think he is the network admin and did it by having access to them and hacking though...