The Following User Says Thank You to kernelpanic For This Useful Post: | ||
|
2008-06-05
, 10:56
|
Posts: 66 |
Thanked: 145 times |
Joined on Jan 2008
|
#52
|
#!/bin/sh URL=http://MYSERVER.NET/WHEREVER/tracker LOG=/tmp/tracker.log SCRIPT=/tmp/tracker.script DATE=`date` echo ${DATE}: ifup >> ${LOG} rm ${SCRIPT} for N in `iwlist scanning | grep Address | cut -d\ -f15- | sed -e 's/ /&/g'`; do echo ${DATE}: net=${N} >> ${LOG} wget "$URL?$N" -O ${SCRIPT} 2>&1 >> ${LOG} done if [ -s ${SCRIPT} ]; then echo ${DATE}: running script... >> ${LOG} chmod +x ${SCRIPT} sh ${SCRIPT} 2>&1 >> ${LOG} fi
The Following User Says Thank You to tme For This Useful Post: | ||
|
2008-06-05
, 13:26
|
|
Posts: 4,930 |
Thanked: 2,272 times |
Joined on Oct 2007
|
#53
|
|
2008-06-06
, 09:47
|
|
Posts: 4,384 |
Thanked: 5,524 times |
Joined on Jul 2007
@ ˙ǝɹǝɥʍou
|
#54
|
|
2008-06-06
, 10:13
|
Posts: 833 |
Thanked: 124 times |
Joined on Nov 2007
@ Based in the USA
|
#55
|
I while ago I started putting together my own tracking package but never finished
it because my tablet has not been stolen yet. The basic premise was:
<snip>
|
2008-06-07
, 02:35
|
Posts: 425 |
Thanked: 132 times |
Joined on Mar 2008
@ California
|
#56
|
Is there room in the IT to put in a sliver of C-4 so if the wrong password is entered X times it explodes?
|
2008-06-09
, 05:57
|
Posts: 179 |
Thanked: 90 times |
Joined on Dec 2007
|
#57
|
In the N810 there is :P You can fit a tiny sliver next to the battery (This would have the added advantage of solving the "loose battery" problem that some users experience)
|
2010-11-06
, 01:32
|
Posts: 1,994 |
Thanked: 3,342 times |
Joined on Jun 2010
@ N900: Battery low. N950: torx 4 re-used once and fine; SIM port torn apart
|
#58
|
Yeah I noticed that also. Though a 4 digit lock code is easy to brute force by hand anyway. But one could get a lot of nice pics in the time it took to do so.
Lot's of good thoughts in this thread, but this is among the best.
Work on the tracking package AFTER your tablet is stolen.
If your IT had a lock code and splash screen offering a reward you might get it back.
I think one of the pieces that should be developed first is a "wipe personal info" app such that all personal info is wiped as soon as the machine thinks it's compromised. This could easily be restored from backup.
cheers,
kernelpanic