Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Personal data leak affects thousands of Vietnamese
https://external-preview.redd.it/dTUfjmaQMuwJD-vKpPy8nOi0f1QaJJ_6rqKsLL8mjfA.jpg?width=640&crop=smart&auto=webp&s=33cf3d03ebabc1f618b6fb6923f58975b2f1fe0e submitted by /u/fatrat957
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Personal data leak affects thousands of Vietnamese
https://external-preview.redd.it/dTUfjmaQMuwJD-vKpPy8nOi0f1QaJJ_6rqKsLL8mjfA.jpg?width=640&crop=smart&auto=webp&s=33cf3d03ebabc1f618b6fb6923f58975b2f1fe0e submitted by /u/fatrat957
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Personal data leak affects thousands of Vietnamese
Posted in r/hacking by u/fatrat957 • 1 point and 0 comments
hacking: security in practice
Omegle
Hi,
This might sound like a stupid question, but me and my friends got quite drunk last night and went on Omegle. After one friend of mine made a racist comment the other guy said: "I got your IP address, you're internet's fried, you don't know what you got yourself into".
I legitimately feel quite scared now. I don't know much about the "insides" of internet/computers/hacking.
Should I be worried? Could he access banking information of me or my family whom I live with?
Any advice? Thanks!
submitted by /u/3jq3jq
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Omegle
Hi,
This might sound like a stupid question, but me and my friends got quite drunk last night and went on Omegle. After one friend of mine made a racist comment the other guy said: "I got your IP address, you're internet's fried, you don't know what you got yourself into".
I legitimately feel quite scared now. I don't know much about the "insides" of internet/computers/hacking.
Should I be worried? Could he access banking information of me or my family whom I live with?
Any advice? Thanks!
submitted by /u/3jq3jq
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Reddit
Omegle : r/hacking
2.8M subscribers in the hacking community. A subreddit dedicated to hacking and hackers. Constructive collaboration and learning about exploits…
Msldap - LDAP Library For Auditing MS AD
msldap LDAP library for MS AD Documentation Awesome documentation here! Features Comes with a built-in console LDAP client All parameters can be conrolled via a conveinent URL (see below) Supports integrated windows authentication (SSPI) both with NTLM and with KERBEROS Supports channel binding (for ntlm and kerberos not SSPI) Supports encryption (for NTLM/KERBEROS/SSPI) Supports LDAPS (TODO: actually verify certificate) Supports SOCKS5 proxy withot the need of extra proxifyer Minimal footprint A lot of pre-built queries for convenient information polling Easy to integrate to your project No testing suiteInstallation Via GIT python3 setup.py install OR pip install msldap Prerequisites winsspi module. For windows only. This supports SSPI based authentication. asn1crypto module. Some LDAP queries incorporate ASN1 strucutres to be sent on top of the ASN1 transport XD asysocks module. To support socks proxying. aiocmd For the interactive client asciitree For plotting nice trees in the interactive client Usage Please note that this is a library, and was not intended to be used as a command line program. Whit this noted, the projects packs a fully functional LDAP interactive client. When installing the msldap module with setup.py install a new binary will appear called msldap (shocking naming conventions) LDAP connection URL The major change was needed in version 0.2.0 to unify different connection options as one single string, without the need for additional command line switches. The new connection string is composed in the following manner: +://\:@:/?=&=&... Detailed explanation with examples: +://:@://?= sets the ldap protocol following values supported: - ldap - ldaps can be omitted if plaintext authentication is to be performed (in that case it default to ntlm-password), otherwise: - ntlm-password - ntlm-nt - kerberos-password (dc option param must be used) - kerberos-rc4 / kerberos-nt (dc option param must be used) - kerberos-aes (dc option param must be used) - kerberos-keytab (dc option param must be used) - kerberos-ccache (dc option param must be used) - sspi-ntlm (windows only!) - sspi-kerberos (windows only!) - anonymous - plain - simple - sicily (same format as ntlm-nt but using the SICILY authentication) : OPTIONAL. Specifies the root tree of all quer ies can be: - timeout : connction timeout in seconds - proxytype: currently only socks5 proxy is supported - proxyhost: Ip or hostname of the proxy server - proxyport: port of the proxy server - proxytimeout: timeout ins ecodns for the proxy connection - dc: the IP address of the domain controller, MUST be used for kerberos authentication Examples: ldap://10.10.10.2 (anonymous bind) ldaps://test.corp (anonymous bind) ldap+sspi-ntlm://test.corp ldap+sspi-kerberos://test.corp ldap://TEST\\victim:@10.10.10.2 (defaults to SASL GSSAPI NTLM) ldap+simple://TEST\\victim:@10.10.10.2 (SASL SIMPLE auth) ldap+plain://TEST\\victim:@10.10.10.2 (SASL SIMPLE auth) ldap+ntlm-password://TEST\\victim:@10.10.10.2 ldap+ntlm-nt://TEST\\victim:@10.10.10.2 ldap+kerberos-password://TEST\\victim: @10.10.10.2 ldap+kerberos-rc4://TEST\\victim:@10.10.10.2 ldap+kerberos-aes://TEST\\victim:@10.10.10.2 ldap://TEST\\victim:password@10.10.10.2/DC=test,DC=corp/ ldap://TEST\\victim:password@10.10.10.2/DC=test,DC=corp/?timeout=99&proxytype=socks5&proxyhost=127.0.0.1&proxyport=1080&proxytimeout=44 Kudos Download Msldap
Read more...
___________________________
@hacking_Attack
@Hacking_Video
msldap LDAP library for MS AD Documentation Awesome documentation here! Features Comes with a built-in console LDAP client All parameters can be conrolled via a conveinent URL (see below) Supports integrated windows authentication (SSPI) both with NTLM and with KERBEROS Supports channel binding (for ntlm and kerberos not SSPI) Supports encryption (for NTLM/KERBEROS/SSPI) Supports LDAPS (TODO: actually verify certificate) Supports SOCKS5 proxy withot the need of extra proxifyer Minimal footprint A lot of pre-built queries for convenient information polling Easy to integrate to your project No testing suiteInstallation Via GIT python3 setup.py install OR pip install msldap Prerequisites winsspi module. For windows only. This supports SSPI based authentication. asn1crypto module. Some LDAP queries incorporate ASN1 strucutres to be sent on top of the ASN1 transport XD asysocks module. To support socks proxying. aiocmd For the interactive client asciitree For plotting nice trees in the interactive client Usage Please note that this is a library, and was not intended to be used as a command line program. Whit this noted, the projects packs a fully functional LDAP interactive client. When installing the msldap module with setup.py install a new binary will appear called msldap (shocking naming conventions) LDAP connection URL The major change was needed in version 0.2.0 to unify different connection options as one single string, without the need for additional command line switches. The new connection string is composed in the following manner: +://\:@:/?=&=&... Detailed explanation with examples: +://:@://?= sets the ldap protocol following values supported: - ldap - ldaps can be omitted if plaintext authentication is to be performed (in that case it default to ntlm-password), otherwise: - ntlm-password - ntlm-nt - kerberos-password (dc option param must be used) - kerberos-rc4 / kerberos-nt (dc option param must be used) - kerberos-aes (dc option param must be used) - kerberos-keytab (dc option param must be used) - kerberos-ccache (dc option param must be used) - sspi-ntlm (windows only!) - sspi-kerberos (windows only!) - anonymous - plain - simple - sicily (same format as ntlm-nt but using the SICILY authentication) : OPTIONAL. Specifies the root tree of all quer ies can be: - timeout : connction timeout in seconds - proxytype: currently only socks5 proxy is supported - proxyhost: Ip or hostname of the proxy server - proxyport: port of the proxy server - proxytimeout: timeout ins ecodns for the proxy connection - dc: the IP address of the domain controller, MUST be used for kerberos authentication Examples: ldap://10.10.10.2 (anonymous bind) ldaps://test.corp (anonymous bind) ldap+sspi-ntlm://test.corp ldap+sspi-kerberos://test.corp ldap://TEST\\victim:@10.10.10.2 (defaults to SASL GSSAPI NTLM) ldap+simple://TEST\\victim:@10.10.10.2 (SASL SIMPLE auth) ldap+plain://TEST\\victim:@10.10.10.2 (SASL SIMPLE auth) ldap+ntlm-password://TEST\\victim:@10.10.10.2 ldap+ntlm-nt://TEST\\victim:@10.10.10.2 ldap+kerberos-password://TEST\\victim: @10.10.10.2 ldap+kerberos-rc4://TEST\\victim:@10.10.10.2 ldap+kerberos-aes://TEST\\victim:@10.10.10.2 ldap://TEST\\victim:password@10.10.10.2/DC=test,DC=corp/ ldap://TEST\\victim:password@10.10.10.2/DC=test,DC=corp/?timeout=99&proxytype=socks5&proxyhost=127.0.0.1&proxyport=1080&proxytimeout=44 Kudos Download Msldap
Read more...
___________________________
@hacking_Attack
@Hacking_Video
Exploit Collector
CVE-2021-31166 - Proof Of Concept For CVE-2021-31166, A Remote HTTP.sys Use-After-Free Triggered Remotely
___________________________
@hacking_Attack
@Hacking_Video
CVE-2021-31166 - Proof Of Concept For CVE-2021-31166, A Remote HTTP.sys Use-After-Free Triggered Remotely
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
CVE-2021-31166 - Proof Of Concept For CVE-2021-31166, A Remote HTTP.sys Use-After-Free Triggered Remotely
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Exploit Collector
rxvt 2.7.0 / rxvt-unicode 9.22 Code Execution
___________________________
@hacking_Attack
@Hacking_Video
rxvt 2.7.0 / rxvt-unicode 9.22 Code Execution
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
rxvt 2.7.0 / rxvt-unicode 9.22 Code Execution
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Exploit Collector
NiceHash Miner Excavator 1.6.7c Cross Site Request Forgery
___________________________
@hacking_Attack
@Hacking_Video
NiceHash Miner Excavator 1.6.7c Cross Site Request Forgery
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
NiceHash Miner Excavator 1.6.7c Cross Site Request Forgery
Exploit Collector is the ultimate collection of public exploits and exploitable vulnerabilities. Remote/Local Exploits, Shellcode and 0days.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How To Change Your Grades On Infinite Campus
AUTOMICHACKERSCREW@GMAIL.COM — -Remember to always change the percentage if the letter grade changes. The percentages calculate to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
How To Change Your Grades On Infinite Campus
AUTOMICHACKERSCREW@GMAIL.COM — -Remember to always change the percentage if the letter grade changes. The percentages calculate to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
How To Change Your Grades On Infinite Campus
AUTOMICHACKERSCREW@GMAIL.COM — -Remember to always change the percentage if the letter grade changes. The percentages calculate to…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Hack password on linux machine with GRUB
https://cdn-images-1.medium.com/max/1815/0*YYGKopvrxTnU0s0q.png
May 17, 2021
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Hack password on linux machine with GRUB
https://cdn-images-1.medium.com/max/1815/0*YYGKopvrxTnU0s0q.png
May 17, 2021
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Hack password on linux machine with GRUB
May 17, 2021
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
DCG 201 Online Meet Up — May 2021 — Virtual Light
https://cdn-images-1.medium.com/max/1136/1*1NLouTFzUTePw8q7K9gE3g.jpeg
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
DCG 201 Online Meet Up — May 2021 — Virtual Light
https://cdn-images-1.medium.com/max/1136/1*1NLouTFzUTePw8q7K9gE3g.jpeg
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
DCG 201 Online Meet Up — May 2021 — Virtual Light
Since March of last year, the entire world had to become familiar with being more involved in the virtual world than it normaly has. Zoom Meet Ups, Twitch LIVE Streams, Fortnite Concerts and the…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Changing AOBs With Our C++ CLI .dll
https://cdn-images-1.medium.com/max/2600/0*YfwMr7UKaEjVTI63
In the previous blogs, I showed you how to use C++ CLI to create a .dll with a simple and easy to edit WindowsForm UI. In this blog, we…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Changing AOBs With Our C++ CLI .dll
https://cdn-images-1.medium.com/max/2600/0*YfwMr7UKaEjVTI63
In the previous blogs, I showed you how to use C++ CLI to create a .dll with a simple and easy to edit WindowsForm UI. In this blog, we…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Changing AOBs With Our C++ CLI .dll
In the previous blogs, I showed you how to use C++ CLI to create a .dll with a simple and easy to edit WindowsForm UI. In this blog, we…
Help installing drivers for Alfa USB adapter AWUS036NHA on macosx?
https://www.reddit.com/r/Pentesting/comments/nfpin7/help_installing_drivers_for_alfa_usb_adapter/
I'm on OSX 10.13 High Sierra. Found some blog posts detailing how to do this for older OSX versions, but the closest I've found are for other models which use the Realtek chipset (AWUS036H) or Ralink (https://blog.alfa.com.tw/2018/11/02/awus036neh-and-awus036nh-macos-10-14-mojave-installation-guide/) (AWUS036NH), while this one uses Atheros. Does anyone know how to set up the driver? Also, I'm aware that Kali has driver support, but I'm not using this for pentesting, but because the wifi on my macbook is too weak to connect to the router (yes, I can get a repeater, but I already have this adapter so might as well give it a shot). submitted by /u/throw_this_out_now (https://www.reddit.com/user/throw_this_out_now)
[link] (https://www.reddit.com/r/Pentesting/comments/nfpin7/help_installing_drivers_for_alfa_usb_adapter/) [comments] (https://www.reddit.com/r/Pentesting/comments/nfpin7/help_installing_drivers_for_alfa_usb_adapter/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/Pentesting/comments/nfpin7/help_installing_drivers_for_alfa_usb_adapter/
I'm on OSX 10.13 High Sierra. Found some blog posts detailing how to do this for older OSX versions, but the closest I've found are for other models which use the Realtek chipset (AWUS036H) or Ralink (https://blog.alfa.com.tw/2018/11/02/awus036neh-and-awus036nh-macos-10-14-mojave-installation-guide/) (AWUS036NH), while this one uses Atheros. Does anyone know how to set up the driver? Also, I'm aware that Kali has driver support, but I'm not using this for pentesting, but because the wifi on my macbook is too weak to connect to the router (yes, I can get a repeater, but I already have this adapter so might as well give it a shot). submitted by /u/throw_this_out_now (https://www.reddit.com/user/throw_this_out_now)
[link] (https://www.reddit.com/r/Pentesting/comments/nfpin7/help_installing_drivers_for_alfa_usb_adapter/) [comments] (https://www.reddit.com/r/Pentesting/comments/nfpin7/help_installing_drivers_for_alfa_usb_adapter/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Help installing drivers for Alfa USB adapter AWUS036NHA on macosx?
I'm on OSX 10.13 High Sierra. Found some blog posts detailing how to do this for older OSX versions, but the closest I've found are for other...