Recent Notes
Displaying keyword search results 1 - 4
Created by mak on March 04, 2011 14:17:32
Last update: March 04, 2011 14:18:35
To create a zipfile in python:
Code:
#!/usr/local/bin/python
import zipfile
#...
Test
unzip -l test.zip
Archive: test.zip
Lengt...
To read a zipfile in python:
Code:
#!/usr/local/bin/python
import zipfile
#...
Created by Dr. Xi on December 25, 2009 03:23:36
Last update: December 25, 2009 03:23:51
Suppose User is the model class, this is the code to catch DoesNotExist :
>>> try:
... u = User.objects.get(name='Dja...
Created by Dr. Xi on April 22, 2007 21:58:45
Last update: January 19, 2009 20:26:12
Your code will be syntax highlighted when you specify the language of your code with the BBcode code tag:
[code=lang] Your code here [/code]
where "lang" is the language of your code. For example, the following Perl code
#!/usr/bin/perl
print "Hello World!\n";
is rendered with:
[code=perl]
#!/usr/bin/perl
print "Hel...
The following are supported languages and their corresponding names for BBcode:
Apache conf: apacheconf, aconf, apache
Bash...
The full list is available from http://pygments.org/ , which is our backend engine for syntax highlight rendering.
Created by Dr. Xi on October 06, 2008 22:48:08
Last update: October 06, 2008 22:50:11
A first attempt would be to create an input file like this:
userid password shell_command1 shell_... and feed the lines to the telnet client: cat telnet_input.txt | telnet remote_host #... However, you'll learn soon enough that it doesn't work. You get output like this: Trying 192.168.159.128... Connected to bash... What's happening? The telnet client depleted all input before the remote host had a chance to respond. Since there's no more input, the telnet client initiated to close the connection. Adding a delay between the commands makes it work: (echo userid sleep 10 echo password ... How much time to sleep between commands is just guesswork. You can use Expect to provide more control over the automated session: #!/usr/bin/expect # timeout script aft......