October 30th

Posted: October 29th, 2009 under syndicated.
Comments: none
Just one geeks view of the world
This is NOT my content!! It is content I found interesting in my Google Reader Feeds
We know how it is: you've paid $300 for your brand new copy of Windows 7, but what a hassle to enter in that activation code! Well, you don't have to worry about it now for a good four months after install: Microsoft has given its sort-of blessing to a simple hack to keep that non-activated copy of Windows 7 humming for a full 120 days before full-on nag mode sets in. All you have to do is enter "slmgr -rearm" into the command prompt at the end of every 30 day period, and your copy of Windows gets a whole new lease on life -- an action that can be repeated three times. The same command is available to Vista users, and we have to say that Microsoft has come a very long way since its unforgiving WGA kill switch days.Filed under: Software
Windows 7 runs free without activation for 120 days with simple command originally appeared on Engadget on Fri, 21 Aug 2009 10:10:00 EST. Please see our terms for use of feeds.
Read | Permalink | Email this | CommentsPosted: August 21st, 2009 under Vista, syndicated.
Comments: none
# from scapy.all is imported in the trace_route_combine module
from trace_route_combine import *
t = TracerouteCollection()
x = traceroute("172.16.28.140", maxttl=18, dport=80)
t.add_route(x[0])
x = traceroute("172.16.28.141", maxttl=18, dport=80)
t.add_route(x[0])
x = traceroute("172.16.28.142", maxttl=18, dport=80)
t.add_route(x[0])
x = traceroute("172.16.27.140", maxttl=18, dport=80)
t.add_route(x[0])
x = traceroute("172.16.26.140", maxttl=18, dport=80)
t.add_route(x[0])
x = traceroute("172.16.24.140", maxttl=18, dport=80)
t.add_route(x[0])
# now to create the graph
t.do_graph()
# or get the graph string
gs = t.build_graph()
# get paths to all the trace routed hosts
# x> is a down host and => is an up host
paths = t.get_paths_to_hosts()
Posted: February 25th, 2009 under Security, syndicated.
Comments: none