Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.7K 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
Dark Reading: Attacks/Breaches
Google Blocks 231B Spam, Phishing Emails in Past 2 Weeks

Google Workspace's team is seeing a spike in phishing and spam hitting Gmail — up 10% in just the last two weeks.
Dark Reading: Attacks/Breaches
How Tech Companies Can Slow Down Spike in Breaches

Cybercrime continues to evolve — and shows no signs of slowing down.
The Rise of Web 3.0 Security

Web3 Security introductionContinue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Wodat : Windows Oracle Database Attack Toolkit

Wodat is a simple port of the popular Oracle Database Attack Tool (ODAT) to C# .Net Framework. Credit to https://github.com/quentinhardy/odat as lots of the functionality are ported from his code.

* Perform password based attacks e.g. username as password, username list against given password, password list against given username, username:pass combolist.
* Test if a credential/connection string is working against target
* Brute force attacks to discover valid SID/ServiceNames
* Perform discovery of valid TNS listeners against provided target file or CIDR range
* More to come, I hope!
* DisclaimerI take not responsibility for your use of the software. Development is done in my personal capacity and carry no affiliation to my work. UsageThe general command line arguments required are as follow:
wodat.exe COMMAND ARGGUMENTS
COMMAND (ALL,BRUTECRED,BRUTESID,BRUTESRV,TEST,DISC)
-server:XXX.XXX.XXX.XXX -port:1520
-sid:AS OR -srv:AS
-user:Peter -pass:Password
To test if a specific credential set works.
wodat.exe TEST -server:XXX.XXX.XXX.XXX -port:1521 -sid:XE -user:peter -pass:pan
See the outline on modules for further usage. The tool will always first check if the TNS listener that is targeted works. ModulesBRUTESIDModule performs wordlist SID guessing attack if not successful will ask for brute force attack.
wodat.exe BRUTESID -server:XXX.XXX.XXX.XXX -port:1521 https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDKAx6TZllxV-wMaezSbhJM3pTmaYW3CbUNctXgl3cfTHJ1bGDmFx70H3zp4Wi35qeToAclB7ErXbT68apwYL6izkwYcRRf17FB9NnTxn7plTJbTDRZAxSouvBJeCzHAAAtTBaLbNjHhPA85E_tJUzXn3kKF9GTkkcLoePw-4yufGFBUPCk_x3AJ10/s918/wodat1.png BRUTESRVModule performs wordlist ServiceName guessing attack if not successful will ask for brute force attack.
wodat.exe BRUTESRV -server:XXX.XXX.XXX.XXX -port:1521 BRUTECREDModule performs wordlist password based attack. The following options exist:
A - username:password combolist with no credentials given during arguments
B - username list with password given in arguments
C - password list with username given in arguments
D - username as password with username list provided
To perform a basic attack with a given file that has username:password combos.
wodat.exe BRUTECRED -server:XXX.XXX.XXX.XXX -port:1521 -sid:XE https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDVyIychkovFHSYvbLP_1TYC8ddAgoz7cvKrVC45SGSPf2e5Mcc3EBH3EaTPGX8ubymlHtIS-u58T3rgNOAiM15Y6qnWCiKX9xsR7FTiUMBC48lnPs7x_MI5jOJ9TVOtgYcfN-RWBr2z8HEnFfv9jAoxNP7bqJ2bw96P34cxbiXFRQxu7iaKfeY7AB/s1248/wodat2.png TESTModule tests if the given connection string can connect successfully.
wodat.exe TEST -server:XXX.XXX.XXX.XXX -port:1521 -sid:XE -user:peter -pass:pan https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaIGqB5kVnIjElHb7rdJxuuEB5f7zv6pS1veJ9ktmmTTb2HM6M3tdOizxyulDExMydiwrpVppZezmStOaffg8xspdSY2sR6tkA1YLImikimY3yOBXXlExkoxiGxHrnnOlotNhiNpzxk5637GQa-p-Sp8Qil7PKS6JYvA8FelxP_dNXMvOs5yXbZtxE/s1311/wodat3.png DISCModule will perform discovery against provided CIDR range or file with instances. Note, only instances with valid TNS listeners will be returned. Testing a network range will be much faster as it’s processed in parallel.
wodat.exe DISC
Instances to test must be formatted as per the below example targets.txt:
192.168.10.1
192.168.10.5,1521 https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhOrlW4a2P9AspeO5RrO18-zdjQF5NA_lEiXRLM_9VN1Aa8Y8yblCux6il1eHt4QICLM_M4UanwA--y91BiJ3Wvbn119VlqFymIfYu1VkIfhL-jxjwpeIV31GQaIXVFnBBD1amA4QKb10hdUnfCmq86TMJU0oU7zOZHWDhn7cbwfkvEzJ5wUaIeZHXY/s950/wodat4.png ALLNot implemented yet. RECONNot implemented yet. Setup and RequirementsYou can grab automated release build from the GitHub Actions or build yourself using the following commands:
nuget restore wodat.sln
msbuild wodat.sln -t:rebuild -property:Co[...]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Kali Linux Tutorials Wodat : Windows Oracle Database Attack Toolkit Wodat is a simple port of the popular Oracle Database Attack Tool (ODAT) to C# .Net Framework. Credit to https://github.com/quentinhardy/odat as lots of the functionality are ported from…
nfiguration=Release
Some general notes: The Oracle.ManagedDataAccess.dlllibrary will have to be copied with the binary. I’m looking at ways of embedding it. Todo* Handle SYSDBA and SYSOPER connections
* Implement outstanding modules
* Various validation, error handling code still needs to be done
* Some minor known bugfixes
* Add options to check against built in lists for SID, ServiceNames or common credentials ChangelogVersion 0.1 – Base toolkit and functionality Version 0.2 – Several bugfixes, improved socket connection and added RECON module Click Here To Download
Sent by @TheFeedReaderBot

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
DCSnoop - DNS Cache Snooping Tool

This is now my second post about the DNS Cache Snooping tool I've been making and I have now managed to upload a skeleton of the code on the github page located at https://github.com/benjibrown/DCSnoop. For those wondering, this tools uses nslookup to send a non recursive query to a dns server to determine if a url is cached.

submitted by /u/Ok-Chipmunk4539
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video