2018-07-16 News Feed

Categories Hacker Shit, News Feed Stuff, Random Musings, Security Stuff, Stuff To Learn

Fucking Homepage Words of Wisdom of the Fucking Day:
Never be afraid of change. You may lose something good, but you may gain something better.


HackTheBox – Bart Writeup
https://www.sploitspren.com/2018-07-15-HackTheBox-Bart/
#hackerstuff #HackThePlanet


Hamburglar – Directory/file traversal to find keys, ip addresses, emails, crypto addresses, and more. One configurable script, regex driven.

https://github.com/needmorecowbell/Hamburglar
#hackerstuff #HackThePlanet


IDA IPython – pure Python implementation for both IDA6.x and IDA7.x (x-post from /r/ReverseEngineering)

https://github.com/tmr232/ida_ipython
#hackerstuff #HackThePlanet


2018-07-12 News Feed

Categories Hacker Shit, News Feed Stuff, Random Musings, Security Stuff, Stuff To Learn

Fucking HomePage – Words of Wisdom of the Fucking Day:
It doesn’t matter if you know the right thing to do if you don’t do it.
#FuckingHomepage


Hola VPN’s Chrome extension hacked to target MyEtherWallet users

Hola VPN’s Chrome extension hacked to target MyEtherWallet users


#hackerstuff #HackThePlanet


COM and the PowerThIEf
https://labs.nettitude.com/blog/com-and-the-powerthief/
#hackerstuff #HackThePlanet


eBPF and Analysis of the get-rekt-linux-hardened.c Exploit for CVE-2017-16995
https://ricklarabee.blogspot.com/2018/07/ebpf-and-analysis-of-get-rekt-linux.html
#hackerstuff #HackThePlanet


Facebook Group trying to get started: Perceived Security
https://www.facebook.com/groups/393956191014036


Hackers just broke the iPhone X’s Face ID using a 3D-printed mask

Hackers just broke the iPhone X’s Face ID using a 3D-printed mask from netsec


#hackerstuff #HackThePlanet


2018-07-11 News Feed

Categories Hacker Shit, News Feed Stuff, Random Musings, Security Stuff, Stuff To Learn

Nice blog post I found on /r/Defcon
https://systemoverlord.com/2018/05/26/hacker-summer-camp-2018-prep-guide.html

#DefCon #HackThePlanet


DefCon Parties
https://calendar.google.com/calendar/embed?src=6v9lr8h7lkfak152por3h86d0o@group.calendar.google.com&ctz=America/Los_AngelesshowTitle%3D0&showNav=1&showPrint=1&showTabs=1&showCalendars=1&showTz=1&mode=WEEK&height=300&wkst=2&dates=20180806/20180812&pli=1

#DefCon #HackThePlanet


Blackhat, BSidesLV and DEF CON Parties 2018

Blackhat, BSidesLV and DEF CON Parties 2018

#DefCon #HackThePlanet


2018-07-09 News Feed

Categories Hacker Shit, News Feed Stuff, Random Musings, Security Stuff, Stuff To Learn

Crooks hack gas station fuel pump to steal 600 gallons of gas

Crooks hack gas station fuel pump to steal 600 gallons of gas


#hackerstuff #HackThePlanet


OS Instrumentation Framework: #osquery

OS Instrumentation Framework: osquery


#hackerstuff #HackThePlanet


#NetBScanner – NetBIOS Network Scanner

NetBScanner – NetBIOS Network Scanner


#hackerstuff #HackThePlanet


Hacking a game to learn FRIDA basics (Pwn Adventure 3)
https://x-c3ll.github.io/posts/Frida-Pwn-Adventure-3/
#hackerstuff #HackThePlanet

Issues Formatting a USB – Using Windows

Categories Random Musings

I ran into an issue formatting a USB, today. I was on one of my Windows laptops, and was not having any luck getting it to format or do anything. I tried my Apple laptop as well, but still no luck. I finally found a solution using DiskPart, here: https://superuser.com/questions/293440/formatting-the-volume-is-too-big-for-fat32


Run these steps/commands
1. Open command prompt as administrator
2. Diskpart
3. List disk
4. Select disk X (where x is the disk you want to partition/format)
5. Clean
6. Create partition primary size=30000 (where 30,000 is the size in MB you want the partition to be, under 32GB)
7. Select partition 1
8. Active
9. Format quick fs=Fat32
10.Assign
11.Exit