Reiser Notepad

Tuesday, June 18, 2013

Verify Administrator Password Recovery Information

Hi Notepad

As part of recent enhancements to the automated administrator account recovery process, we will no longer be using the secondary email address indicated in the Google Admin console for administrator account recovery. Instead, super administrators can now add their own recovery email address and phone number to their super administrator accounts to assist in recovery.

All super administrators are strongly recommended to keep their recovery information updated. From now on, super administrators will be regularly prompted to update their recovery details.To verify and update your account recovery information now, please click here. Please refer to the password reset instructions for more information.

Sincerely,
Google Apps team

Sunday, January 24, 2010

[HowTo] get Stumbler Plus to work on iPhone 3.1.2

You'll need to install:
  • wget
  • OpenSSH
Get your phone's IP address (using Settings > Network > Blue Arrow)
Log into the phone (using ssh root@phone)

wget http://www.iphone.mysticwall.com/download/StumblerPlus-1.2rev1.tar.gz
gzip -dc StumblerPlus-1.2rev1.tar.gz | tar xv
cp -vfr StumblerPlus.app /Applications
rm -vfr StumblerPlus.app

This should "just work" with no reboot of the phone.

Listing apps installed on iPhone

Listing installed apps (Native and Cydia):
...by date:
ls -lta /Applications/|cut -c34-120|more

...by name:
ls -a /Applications/|sort|more


Intelliscreen
http://www.intelliborn.com/products.html

Auto Silent
http://iphonepackers.info

3G Unrestrictor
GV Mobile
OpenSSH
Mobile Terminal
network tools
sys-cmds

Friday, January 22, 2010

[How to] Build wireshark on Fedora 12

Resources we used included:
http://www.wireshark.org/docs/wsug_html_chunked/ChIntroPlatforms.html

Searching for [Wireshark "Binary package" "Red Hat" Fedora download] we found:
http://www.wireshark.org/docs/wsug_html_chunked/ChBuildInstallUnixInstallBins.html
But we used none of the above.

Instead, we built Wireshark on Fedora using:

yum -y install libpcap-devel
gzip -dc wireshark-1.2.5.tar.gz | tar xv
pkg-config glib-2.0 --modversion
pkg-config gtk+-2.0 --modversion
./configure --without-net-snmp --without-ucd-snmp
make

Wireshark now invoked with:
~/Downloads/wireshark-1.2.5/wireshark &

Friday, January 15, 2010

[How to] Analyze packets to/from iPhone

Install apps onto phone:
  • OpenSSH
  • tcpdump
Change root passwd on phone
Get into the phone with:
ssh root@matthew-iphone

Watch packets to/from the phone (excluding VNC and ssh packets):
tcpdump -lc 10000 host matthew-iphone and not \(port 5900\) and not \(port 22\) | tee pcap.txt

Friday, January 8, 2010

Dual boot with Linux

Install Linux and reboot

Chameleon shows Snow Leopard and Linux as dual boot.
If "Missing Operating System" then:

Boot from Leopard
fdisk -e /dev/rdisk4
flag 1 (make EFI partition active)
update (update machine code)
quit (save changes)

Reboot

Booting 10.6.2 without USB stick

Using Chameleon 2.0RC3...
Install EP45UD3P-Snow-Leopard-v3.pkg
Added to com.apple.Boot.plist:
<key>Device</key>
<string>rd=disk3s2</string>
<key>Kernel Flags</key>
<string>-v</string>

Followers