public
Description: Prey is a simple yet powerful application for tracking stolen computers.
Homepage: http://preyproject.com
Clone URL: git://github.com/tomas/prey.git
prey / config
100755 70 lines (53 sloc) 2.174 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/bash
####################################################################
# PREY Configuration File - by Tomas Pollak (bootlog.org)
# URL : http://prey.bootlog.org
# License: GPLv3
####################################################################
 
# language, en (english) or es (espanol)
lang='en'
 
# verification URL, if left empty Prey will always gather and send the information
url=''
 
# mailbox to send the report
emailtarget='mailbox@domain.com'
 
# SMTP configuration
# TODO: store the password in an encrypted formt
# don't worry, this file will be unaccesible for other users anyway
smtp_server='smtp.gmail.com:587'
smtp_username='username@gmail.com'
smtp_password='password'
 
####################################################################
# optional configuration, some of this is still experimental
####################################################################
 
# email settings
from='Prey <no-reply@gmail.com>'
subject="PREY -- status report"
 
# timelapse to watch for modified files, default one hour
minutos=60
 
# route where to get the modified files from
ruta_archivos=~/
 
# change wallpaper to alert nearby users -- EXPERIMENTAL!
alertwallpaper=n
wallpaper="alerts/prey-wallpaper-$lang.png"
 
# alert the user with a message, y or n
alertuser=n
alertmsg="This is a stolen computer, and has been marked by Prey.
Please contact immediately $emailtarget to clarify the situation.
Otherwise you'll be notified to the police. YOU HAVE BEEN WARNED!"
 
# should we kill the X session? -- EXPERIMENTAL!
# this isn't such a good idea anyway, since we should try to keep
# the guy logged in for as long as we can, to get the maximum amount
# of information we can from him -- Tomas
killx=n
 
# where to store the temporary images
screenshot=/tmp/prey-screenshot.jpg
picture=/tmp/prey-picture.jpg
 
####################################################################
# not implemented yet
####################################################################
 
# backup ?
backup_path=~/.prey
 
# guest account to create so we can lurk him into logging in
guest_account=guest
 
# for how much time are we going to gather TCP packages?
tcpdump_time=100