Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

login

How To Take A Screenshot Of Your Login Screen
Wednesday, 27 July 2011 03:33

How To Take A Screenshot Of Your Login Screen

Normally you use a screenshot tool to take screenshots of your Linux desktop. Unfortunately, this doesn't work if you want to take a screenshot of your login prompt. This tutorial explains how you can take a screenshot of your Linux desktop login screen nevertheless.

Read more: http://howtoforge.com/how-to-take-a-screenshot-of-your-login-screen

 
Securing OpenVPN With A One Time Password (OTP) On Ubuntu
Monday, 11 July 2011 13:28

Securing OpenVPN With A One Time Password (OTP) On Ubuntu

So, you got yourself a nice OpenVPN box. People need to login with their certificates but... if their laptop is stolen anyone could login. Sure, you could add password login but thats a bit outdated. The solution for this is using a OTP (one time password).

Read more: http://howtoforge.com/securing-openvpn-with-a-one-time-password-otp-on-ubuntu

 
tuingServer
Friday, 27 May 2011 10:26
// description of your code here


#! /usr/bin/python
# -*-coding:utf-8-*-
import urllib2
from urllib import urlencode
from sys import exit
from re import match
import socket

def main ():
loginData={'email':'YOUR_EMAIL',
'password':'YOUR_PASSWORD',
'origURL':'',
'formName':'',
'method':'',
'isplogin':'true',
'submit':'登录'}
postData=urlencode(loginData)
cookieFile=urllib2.HTTPCookieProcessor()
opener=urllib2.build_opener(cookieFile)
req=urllib2.Request('http://www.renren.com/PLogin.do',postData)
result=opener.open(req)
if result.geturl()=='http://www.renren.com/home' or 'http://guide.renren.com/guide':
print 'Login Success'
else:
print 'Login Error'
exit(1)

rawHtml=result.read()
pos=rawHtml.find("get_check:'")
if pos==-1:
print 'Cannot find requestToken'
exit(2)
rawHtml=rawHtml[pos+11:]
token=match('-\d+',rawHtml)
if token is None:
token=match('\d+',rawHtml)
if token is None:
print 'Cannot match requestToken'
exit(2)
requestToken=token.group()
# print requestToken

s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1)
s.bind(('127.0.0.1',9999))
s.listen(1)
print 'turing Server running on 127.0.0.1:9999'

while True:
cli,addr=s.accept()
# print addr
msg=cli.recv(512)
statusData={'content':msg,
'isAtHome':'1',
'requestToken':requestToken}
postStatusData=urlencode(statusData)
updataReq=urllib2.Request('http://status.renren.com/doing/updateNew.do',postStatusData)
updataResult=opener.open(updataReq)


if __name__=='__main__':
main()

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/yN6YCWJhDjU/13241

 
FanRadio 1.1
Wednesday, 06 October 2010 07:00
About FanRadio
Unofficial Douban Radio client on Mac, without Flash.

- Stay quietly in menu bar
- Global hotkey
- Growl integration
- AppleScript support
- Login is optional, but provides more personal experience.

Read more: http://www.apple.com/downloads/macosx/audio/fanradio.html

 
DomainBrain 2.0
Tuesday, 14 September 2010 07:00
About DomainBrain
A handy tool for Mac OS X that helps webmasters and web designers keep track of server and login information for websites they maintain. Nested folders let you organize your domains the way you want. Data such as FTP, content management and database login info is just a click away in a simple, intuitive interface.

Read more: http://www.apple.com/downloads/macosx/internet_utilities/domainbrain.html

 


Taxonomy by Zaragoza Online