Forum: Python Dec 18th, 2008 |
| Replies: 0 Views: 761 Hi I"m fairly new to python and need some help with a slightly complicated programming solution. I'm trying to write a simply TCP sniffer (not a proxy!) that will sniff tcp packets coming from a... |
Forum: Python Oct 25th, 2008 |
| Replies: 8 Views: 774 |
Forum: Python Oct 21st, 2008 |
| Replies: 8 Views: 774 No, this will apparantly not work. From what I see, the subprocess module lets you, say, send a ping command to Google.com via CMD.EXE. (I'm working with WIN32XP)
This is not what I intend to do.... |
Forum: Python Oct 21st, 2008 |
| Replies: 8 Views: 774 Example please? : /
From what I understood, subprocess and POpen only lets you send an argument to a program, wich you can't do with the project I'm attempting. |
Forum: Python Oct 21st, 2008 |
| Replies: 8 Views: 774 By scanning a program, I mean that it should find a value stored at a certain adress in the RAM, if I've gotten this right. A common program that does this is the freeware "Cheat Engine"... |
Forum: Python Oct 20th, 2008 |
| Replies: 8 Views: 774 I have tried several things, but I just can't get this to work. What I need is a snippet which scans a program for value X, and then simply assigns a varible within the python script to the X value.... |
Forum: Python May 28th, 2008 |
| Replies: 4 Views: 8,157 This seemed inefficient to me, so I looked around for another way. Here is a simpler way to do it, using the sqlite3.Cursor.description attribute.
from sqlite3 import dbapi2 as sqlite... |
Forum: Python Feb 6th, 2008 |
| Replies: 2 Views: 1,562 Allright, check this out... run it a couple times too... not done yet, but I'm likin it
import Image
import ImageDraw
import random
sizex= 1440
sizey = 900
im = Image.new("RGB", (sizex,... |
Forum: Python Feb 6th, 2008 |
| Replies: 2 Views: 1,562 never mind fixed it, check this out, I like it I think it's getting kinda cool, but I need more randomness
import Image
import ImageDraw
import random
sizex= 1280
sizey = 800 |
Forum: Python Feb 6th, 2008 |
| Replies: 2 Views: 1,562 OK, so heres my code, check it out, let me know what you think, I'm trying to embed a serpenski triangle into it, and the program isn't crashing but it isn't displaying and I'm not sure why, if you... |