From 4b5d4685c908634b4e4246095b251219809fb1db Mon Sep 17 00:00:00 2001 From: nanotube Date: Mon, 5 Sep 2005 05:02:19 +0000 Subject: [PATCH] added webpage files to cvs repository --- html/bgf.png | Bin 0 -> 240 bytes html/bgh2.png | Bin 0 -> 455 bytes html/icon.png | Bin 0 -> 151 bytes html/index.html | 123 ++++++++++++++++++++++++++++++++++++++++++ html/stylesheet.css | 128 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 251 insertions(+) create mode 100644 html/bgf.png create mode 100644 html/bgh2.png create mode 100644 html/icon.png create mode 100644 html/index.html create mode 100644 html/stylesheet.css diff --git a/html/bgf.png b/html/bgf.png new file mode 100644 index 0000000000000000000000000000000000000000..a240629f738926370a20bf687848a6ea2abef7f1 GIT binary patch literal 240 zcmVHp^D|KsET;o<+@-v8U%|Jm99*4F>i)Bn)W|IW_;%gg`B$p6O1 z|HH%oz`*~#z5lzr|G2pSwYC4Vv;VNL|E;b6s;d8}sQ;y<|DvM*prHSqo&TDe|Cg8l zm6iWVf5mM8002BmL_t&tnN7h*4uSvx0I(*gEZN8&g8cuDTy6Pt`8gfFcAM2=HW>|i qosU+dRw)&7nYUCT774vPJp?y#?*f?P`Fv{t00004jvj?xr$+B2#FLlEr{qM6+{q1kbUSO2#N^Q zImb5V#5p%@b5qf6&f(|gHk}SPztGK(u}z)+`agK@@jE?uO_lQ71^E~9MIupwtU~fY z=re*J=j941Z}hYXoKtzPN~%yG=;VZKmg8fNjyOCdlOdfZl_Hts;DG&o_V(D_C6OQ= zXJ?1)ZML@9++<^e^>xWmRMXQ6e1WT5Ww%p=VN}JxjANM znVDgFnyD$gUM45;c$k>L?Z)N8>12GIu`xzR85v=C7>5J9ouMIYHmp_#2N@W^V!>>t zzaNu{zCMgbdVA^V!C;`f8@-;cE_6DyS~MEeYC1bnsp#lHsieJ~wl-Q@QU3m;6i)dl zliaMz`&I7nU(ONGe)oR;5BG~gY0WLM`@Hy+>VKAVhAYL2z!$^kM=yP^7K~R*i>_ZP zsS7n5zv*hc5)J22eYo5I=QpL;P qC8L3_)vxQrA2Ma>Sg7UG6HZ0eH)ksncd~`TxJV|IOZ4KWjsF3d-!K#a literal 0 HcmV?d00001 diff --git a/html/icon.png b/html/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..63471905a004ff1b9f4531999600bad3da4cdb8f GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^{2ah@)YAsQ36PBP?UP~>0;M1& literal 0 HcmV?d00001 diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..fb93c84 --- /dev/null +++ b/html/index.html @@ -0,0 +1,123 @@ + + + + PyKeylogger + + + + + + +
+
+ +
+ +

iconPyKeylogger

+

+ PyKeylogger is a simple keylogger written in the python programming language. + I threw it together one day after not being able to find a simple and trustworthy + (as in, source available) keylogger for windows. +

+

+ Since PyKeylogger is available as a simple python source file, there are no trust issues + with using it - you can just look at the source yourself and make sure that it does exactly + what you need it to, and nothing more. (Especially not sending your info to someone else.) +

+ +

iconDownload

+

+ You can download PyKeylogger from the + SourceForge download page. +

+ +

iconInstructions

+ +

+ How pykeylogger works is pretty evident if you just look at the source. + But here is a brief manual for the lazy ones among us. :) +

+

Installing pykeylogger

+

+ pykeylogger requires the following dependencies: +

+

+

+ After all those are installed, just double click the keylogger.pyw file, + and it will run in the background, logging your keys. +

+

Running pykeylogger

+

+ Since the file's extension is ".pyw", it runs without a console window in the background, + if you just double-click the file. If you want to see the console (to see error output, e.g.), + just rename the file with ".py" extension. +

+

+ By default, the log file is placed into "C:\Temp\log.txt" +

+

Controlling pykeylogger:

+
    +
  • pressing 'f12' exits the keylogger +
  • pressing 'f11' makes it flush the file write buffer (useful if you want to see what's been written to the log file without quitting) +
+

Reading the log file

+

+ The log file has two non-printable characters in it: backspace, and escape. Thus, opening the file with + Notepad or Wordpad, you will see a lot of "junk", if you press a lot of backspace (which I do). + To read the file properly (where backspace and escape are marked as such), use the excellent editor + called SciTE. +

+

+ If you want to use windows notepad or wordpad, you may want to clean up the log file, by modifying the filter + in pykeylogger to substitute a string for those characters, as well as putting in \n\r instead of just \n + in order to get the linebreaks in notepad to show up. This can be accomplished by passing appropriate function + arguments to keylogger (check down there toward the bottom of the source file for instructions). +

+

+ Before checking your log file, press 'F11' on the keyboard, to flush the write buffer to the file, if you want to look + at the most recent input. If you use Wordpad, you will notice that Wordpad refuses to open a file that is being used, + so you will have to make a copy of the logfile and open the copy with wordpad, rather than open the logfile directly. +

+ + +

icon7. Where can I ask more questions?

+

+ You can report bugs, feature requests, or submit patches at PyKeylogger's sourceforge page: + http://sf.net/projects/pykeylogger +

+

+ You can also e-mail me directly at this address (remove nospam) +

+

How can I help out?

+

+ If you're a programmer, please feel free to hack around in PyKeylogger code, + to add features, or anything else you would like. +

+

+ If you're not a programmer, you could file bug reports or feature requests. +

+

+ Any contributions will be gladly accepted as patches at sourceforge. +

+ Last changed: Sep 2 2005 17:27 +
+ + + diff --git a/html/stylesheet.css b/html/stylesheet.css new file mode 100644 index 0000000..82e04c6 --- /dev/null +++ b/html/stylesheet.css @@ -0,0 +1,128 @@ + +body { + background-color: #ffffff; + font-family: verdana, arial, helvetica, sans-serif; + margin: 0px; + padding: 0px; +} + +#head { + width: 100%; +/* background-image: url('bgh.png');*/ + background-repeat: no-repeat; + height: 90px; + margin: 0px; + padding: 0px; +} + +#topmenu { + margin-left: 600px; + height: 90px; + position: relative; + background-image: url('bgh2.png'); + background-position: left; + background-repeat: repeat-x; +} + +#main { + font-size: 8pt; + border-left: solid 4px #6464ff; + border-right: solid 4px #6464ff; +} + +#content { + padding-left: 3em; + padding-top: 1em; + padding-bottom: 1em; + padding-right: 20em; +} + +#rightmenu { + font-size: 120%; + position: absolute; + top: 90px; + right: 0px; + width: 15em; + border-left: dashed 1px #6464ff; + border-top: dashed 1px #6464ff; + margin-top: 1em; +} + +#rightmenu ul { + list-style: none; + margin-left: -2em; +} +#rightmenu li { + list-style: none; + padding-left: 2em +} +#activemenu { + background-image: url('icon.png'); + background-repeat: no-repeat; +} +#rightmenu a { + font-weight: bold; + font-size: 9pt; + color: #000000; +} + +#foot { + height: 40px; + background-image: url('bgf.png'); + background-position: left; + background-repeat: repeat-x; + text-align: center; + font-weight: bold; + margin-top: 0px; + padding-top: 0em; + font-size: 7pt; + color: #808080; +} +h2 { + clear: both; + font-weight: bold; + font-size: 10pt; + margin-bottom: 0px; + margin-top: 1.5em; + padding: 0px; + border-bottom: dashed 1px #808080; +} +h4 { + margin-top: 0px; + font-size: 8pt; + width: 100%; +} +img.icon { + vertical-align: bottom; +} + +img.paragraph-image { + float: right; +} + +a, a:visited { + color: #808080; + text-decoration: none +} +a:hover, a:visited:hover { + color: #808080; + text-decoration: underline +} +#time { + color: #808080; +} +pre { + overflow: auto; + font-family: courier,monotype; +} + +pre.code { + border: dashed 1px #6464ff; + margin: 10px 30px 10px 15px; + padding: 5px 15px 5px 15px; +} + +a.f { + text-decoration: none; +} +td { vertical-align: top; } -- 2.45.1