Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.9K 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
Looking for a modern WiFi USB NIC with USB-C preferably
https://www.reddit.com/r/Pentesting/comments/nfik7z/looking_for_a_modern_wifi_usb_nic_with_usbc/

Looking for a USB NIC to use with Kali that has monitor mode, etc. and I know the Alfa ones are very popular. But, does anyone know of a more modern one, even if a little more money that has modern features like USB-C? I know it isn't a huge deal but if I'm going to spend the money on a decent adapter would love to get something a little more future proof like the ones I found that use micro USB or even worse mini USB. submitted by /u/StarCommand1 (https://www.reddit.com/user/StarCommand1)
[link] (https://www.reddit.com/r/Pentesting/comments/nfik7z/looking_for_a_modern_wifi_usb_nic_with_usbc/) [comments] (https://www.reddit.com/r/Pentesting/comments/nfik7z/looking_for_a_modern_wifi_usb_nic_with_usbc/)

___________________________
@hacking_Attack
@Hacking_Video
Graviton Exploit Exploration Mission

ABOUTContinue reading on Medium »
Read more...
Deep Web
Is the Alien Forum online?

Can someone give me the .onion link to Alien Forum? I already tried like 20+ .onion links but I can't find the right one. Thank you in advance!

submitted by /u/Vamscape
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Deep Web
Will this get taken seriously by GCHQ? Or will they just think I’m a nut-job?

I have a concern I may have been threatened by someone from inside Sussex Police, with my Apple FaceID data.

I am in a long and fairly complex dispute with Sussex Police and East Sussex County Council’s Children’s Services.

It concerns a complaint I made way back in 2013 about a now sacked social worker called Alison Jean Gulliver.

For a number of reasons, the facts of my complaint are now becoming public.

Gulliver has just been suspended by Social Work England for dishonesty.

The director of Children’s Services Stuart Gallimore has suddenly resigned. Despite being in his 50s.

I think Becky Shaw, the chief exec of ESCC will be next to go.

As you might imagine, my ‘campaign’ for justice has upset a lot of police and social care people in the county.

In a last ditch attempt to shut me up, I was arrested in November 2020 for allegedly stalking Gulliver, but complaining about her conduct to ESCC and the HSCC. Both entirely reasonable in my view, and did contribute to her sacking.

I only recently found out that stalking is a statutory offence. And as such the police had six months from the date of my arrest to interview and charge me.

That never happened, despite me repeatedly begging to be called in so I could tell them on the record the crimes Gulliver committed here.

I have also discovered that Gulliver and the investigating officer, PC Jo Lane, may have been friends. And that despite the force being aware of my alleged crimes in the late summer of 2020, they waited until November so my arrest (and I’d assert police press release) could coincide with an announcement from the Sussex PCC that she had won funding to set in a stalker squad in the county.

There is also the added element that The Home Office is now involved, as it’s possible Gulliver may have illegally accessed a Police National Computer terminal which was embedded in St Marks House, in Eastbourne.

Back to my point...

Sussex Police still have my phone and Mac. Yesterday I received a post on the police ukReddit, which I believe to be the computer code for my Apple Face ID.

I’m very worried, is there anyway you can look into it for me please?

submitted by /u/Middle_Lifeguard_259
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
msldap
LDAP library (https://www.kitploit.com/search/label/Library) for MS AD
Documentation
Awesome documentation here! (https://msldap.readthedocs.io/en/latest/)
Features
Comes with a built-in console (https://www.kitploit.com/search/label/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 (https://www.kitploit.com/search/label/Kerberos) not SSPI) Supports encryption (https://www.kitploit.com/search/label/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 suite
Installation
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 (https://www.kitploit.com/search/label/Command%20Line) 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 (https://github.com/skelsec/msldap)

___________________________
@hacking_Attack
@Hacking_Video