Egged WiFi – security review [v. 0.2]

2012.06.28

Today review results – improvement detected! :) But…

Read more…

Tags :   

KMS server – WTF?

2012.06.28

Again about basics.

Turns out, that new graduates of MCSE2003 (yes, they are still people who learn it :)   ) told that KMS is “license server, separately installed and required to activate Open (Volume or whatsoever) Licensed Software”.. OMG.

On new installed server with KMS key, under Administrator user:

cscript c:\Windows\System32\slmgr.vbs /ipk XXXXX-YYYYY-ZZZZZ-QQQQQ-TTTTT

+ enter

Result:

Microsoft (R) Windows Script Host Version 5.7
Copyright (C) Microsoft Corporation. All rights reserved.

Installed product key XXXXX-YYYYY-ZZZZZ-QQQQQ-TTTTT successfully.

Now Go to Computer – right click – Go down – Activate online. Done.

In case of no internet- run:

C:\Windows\system32\slui.exe 4

Choose “Other ways” Choose Telephone. Go on…

p.s. Special for U, David… :)

Tags :   

VirtualBox & VMware on linux error – no source

2012.06.24

Well, sometimes things just stop working.

VirtualBox – error about modules not running + require to run as root:

 /etc/init.d/vboxdrv setup 

Well, Google will at 99% of places  recommend You to 

# yum install gcc kernel-devel kernel-headers

And it is help... But if not? 
Then it recommended to define KERNEL_DIR=
Well. sometimes it helps too, but what if not?

Well, let's cut here...
Here what I found as additional problem on RHEL & CentOS (& Fedora)
Nothing help? 

$ uname -a

Do Your kernel have .PAE ?
If Yes - then under root:

# yum install kernel-PAE-devel

and then

# /etc/init.d/vboxdrv setup 
Done.
Tags :     

Do You need a laptop to be a hacker?

2012.06.20

Hacker is more way of life than IT knowledge and tech skills. :)
Obvious? Sure, all truth is obvious. But this is not what I was talking about.

There is an old  Russian joke about how to hack an ATM:

- To hack an ATM, You need a sledgehammer, black mask and laptop. You wear mask, and smash ATM with sledgehammer till it totally broken, than take money and leave.

- And what laptop for?

- What kind of hacker You are without laptop?!!

Well, actually You are :) And here is morning story:

We have few building with complicated system of elevators. Each building  have separate “smart management” system for elevators management, there at least 2 different systems present, and each of them make a noticeable mistakes for frequent elevator users.

So, I am standing in lobby, no going up elevators, all of them up, only one is empty and going down. “What the hell” – I think, – “lets go down and then up”. I am getting in and prepare to wait. At last second man jump-in the elevator, about 50, says:  “Hi! Up or down?”. “Up” – I say, – “but elevator goes down first”.

So, he step on the way of the elevator closing door, and begin to rapidly press button of upper level he needs. Elevator make a try to close door, then again, then short “beep” and arrow “Down” change with arrow “Up” and we going up…

“Don’t forget to press a button”- he said.

“Nice trick, good knowledge of computers, some system bag?” – I am sure guy is somehow related to elevator systems.
“What? No! Just with this stupid elevators You have to take an control in Your hands, otherwise You will never arrive in time” – he said. – “In the [other building] this trick not working, but there is a way too…”, – and he explains me how to stop elevator in other building…

“See You around! come to visit us at [salesmen company name]!” and he left on his level.

And now I am typing this, because apparently joke should be rewritten – You don’t need a laptop to be a hacker :)

https://update.microsoft.com – certificate error?

2012.06.17

As reported by  Mikko Hypponen few mins ago, there was some problem with Safari and https://update.microsoft.com

Appears to be, that all major browsers reject certs from:

https://update.microsoft.com

https://search.microsoft.com/

https://windows.microsoft.com/

Support,  Technet and MSDN subdomains from HTTPS redirected to HTTP.

p.s. Good morning. :)

wget thru tor network – how to? Easy!

2012.06.05

Looks like common task – run wget via tor. No? Just me?
Apparently, when You google it, it send You to forums, man pages, or whatever workarounds possible, because wget don’t support SOCKS proxy natively, and Tor is not HTTP\HTTPS proxy.
As a matter of fact, it’s easy :)
We’ll need tor and proxychains to accomplish our goal

1. Add Tor repository if You not done this yet:

https://www.torproject.org/docs/rpms.html.en

2. Then install tor and proxychains
$ sudo yum install tor proxychains

3. Start tor service
$ sudo service tor start

4. Check that proxychains config contain proper string for folowing data to Tor network
$ sudo nano /etc/proxychains.conf
in the bottom verify that line is present, if not – add it.
socks4  127.0.0.1 9050

5. test the config:
$ proxychains wget http://whoer.net/extended

and open extended page in any html viewer, check what IP logged. :)
Working.

Tags :