Tuesday, December 25, 2012

How to turn off Sharing Options in Windows

How to turn off Windows Sharing Options - prevent intrusions

Start > Control Panel > Network and Internet > Network and Sharing Center > Advanced sharing settings

From here, you can simply un-check Network Discovery, File and Printer sharing and Public folder sharing.

How to turn off UAC(User Account Control) in Windows

How to turn off Windows UAC(User Account Control)

Start > Control Panel > User Accounts and Family Safety > UAC

From here, you can simply turn off UAC

How to turn off IPV6 in Windows

How to turn off IPV6

Method #1
Start > Control Panel > Network and Internet > Network and Sharing Center > Wireless Connection uncheck ipv6

From here, you can simply turn off IPV6.

Method #2
Start > regedit.exe > HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > services > TCPIP6 > Parameters key new DWORD, DisabledComponents, val = 0

How to turn off Remote Desktop in Windows

How to turn off Windows Remote Desktop - prevent intrusions

Start > Control Panel > System and Security > System > Advanced System Settings

From here, you can simply un-check remote desktop.

Wednesday, December 19, 2012

How to turn the SNMPD Service off in Ubuntu

How to disable the SNMPD service

Check to see if it running:
sudo netstat -tupln

Open this configuration file:
sudo nano /etc/default/snmpd

Change the 'yes' to the 'no' and restart the service, disabling it.
SNMPDRUN=no

Sunday, December 16, 2012

How to hack Facebook account pictures

A simple explanation of the Facebook photo URLs

Let's get an example Facebook URL and see what information can be found:

https://www.facebook.com/thehackernews = https://www.facebook.com/172819872731894

Example URL:
https://sphotos-b.xx.fbcdn.net/hphotos-ash3/562956_449111435102735_351919970_n.jpg

This is the photo's album id: 449111435102735
https://facebook.com/449111435102735

Here are different pictures that every user has stored, simply changing the letter at the end of the URL will change it's size.

Normal Picture:
https://sphotos-b.xx.fbcdn.net/hphotos-ash3/562956_449111435102735_351919970_n.jpg
Picture(small):
https://sphotos-b.xx.fbcdn.net/hphotos-ash3/562956_449111435102735_351919970_s.jpg
Small Picture:
https://sphotos-b.xx.fbcdn.net/hphotos-ash3/562956_449111435102735_351919970_t.jpg
Square Picture:
https://sphotos-b.xx.fbcdn.net/hphotos-ash3/562956_449111435102735_351919970_q.jpg



I found this on Pastebin a long time, so for the older Facebook photo ids:

    34330_1531425252044_1427142689_31473272_564909_n.jpg
      ^                    ^                       ^                  ^             ^
      |                      |                        |                   |               |
     No            image id                pid               id            No
    idea                                                                           idea
   
Example URLs:
   
    image id: 1531425252044
    profile.php?id=1531425252044
    redirects to the photo page
    photo.php?pid=31473272&id=1427142689
   
    pid: 31473272
    id of the picture page, needs user id too to work
    photo.php?pid=31473272&id=1427142689
   
    id: 1427142689
    user id
    profile.php?id=1427142689


Cell Phones - Service Menus and Special Numbers

How to get to your phone's service menu

Everyone knows about the 'secret' menus in your phone and I just wanted to make my own list.

Dial and call these numbers to access the hidden menus and if any menu asks for a password, its usually very simple:
  • SPC password - 000000
  • IMEI number - *#06#
  • Programming menu - ##7764726
  • Phone information - *#*#4636#*#*



  • Phone activcation - *228
  • Update coverage area - *22899

Saturday, December 15, 2012

How to port Nmap to your Android Phone

Porting Nmap to Android

I was trying to port Nmap to Android and I was running into plenty of compiling and linking errors until I realized, thanks to Vlatko Kosturjak, this has already been done.

First, download the package:
wget http://ftp.linux.hr/android/nmap/nmap-5.50-android-bin.tar.bz2

Open it:
tar -xvjf nmap-5.50-android-bin.tar.bz2

Go into the directory and push to your phone:
cd nmap-5.50/bin
adb push . /data/local/tmp

Obviously, if you have root, you can push these binaries anywhere you would like.
http://seclists.org/nmap-dev/2011/q1/440