citizenk + security   75

The wonderful horrible life of Facebook users and their data (or, "data hogs get slaughtered")
Facebook is pushing themselves into a position of being viewed as ungrateful data hogs: amassing tons of information, selling it under false pretense, and not sharing it with the folks who gave it to them.
facebook  privacy  marketing  advertising  security  data 
november 2007 by citizenk
Why blurring sensitive information is a bad idea - dheera.net: Dheera Venkatraman's web site
Remember, you want to leave your visitors with NO information, not blurred information.
security  hack  images  technology  image  information 
november 2007 by citizenk
Stealth Windows update prevents XP repair - WindowsSecrets.com
after using the repair option from an XP CD-ROM, Windows Update now downloads and installs the new 7.0.600.381 executable files. Some WU executables aren't registered with the operating system, preventing Windows Update from working as intended. This, in
Windows  XP  repair  software  reference  security  Microsoft 
september 2007 by citizenk
Virtual Private Sushi!?
“wirelesspacket” (quickly becoming one of my favorite chat regulars) sent this suggestion on virtual private networks for individuals.

I was reading your post about Tor or VPN.. Have you ever tried Hamachi? (hamachi.cc) Hamachi is an alternative to VPN. It was highly recommended by Steve Gibson in his Security Now podcast episode 18. aolradio.podcast.aol.com/sn/SN-018.mp3

Hamachi uses AES 256bit encryption creating an Ad-hoch local area network (LAN) using the 5 dot IP address range. (5.xxx.xxx.xxx range) It is also multi platform, running on Windows, Linux and OSX. Hamachi does not send any traffic from your network to there servers. Just your initial login, all connections from there on in are client to client.

Fully Secure.. Here is how you get started…

First, you need to visit the Hamachi website and download there free software. (Spyware free)

Second, install the software. The Hamachi software installs a GUI client with a virtual network adaptor that will allow you to connect to the Hamachi servers and clients.

Third, Create a unique Hamachi network name. You have the ability to use wildcard card characters within your network name. Making it virtually impossible for anyone to guess what network name you have decided to use.

Forth, Use a strong 64 key password. This can be generated at www.grc.com/passwords.htm . Copy and past your network password into the field provided.

Fifth, Download and Install the Hamachi software onto other clients. Have those clients join your Hamachi network. Do this by copying and pasting your network name and password. You have just now created a Hamachi network. (Doesn’t it feel great!)

Simple and efficient.

You now have the ability to use Windows file sharing, FTP, Remote Desktop Connection, VNC, play games and even VPN. All through the ad-hoc LAN network you have just created. (This is Sparta!)

You can now run a VPN server from the privacy of your own home or office without port forwarding. Start your VPN server and Install Hamachi onto that machine. On a machine that has Hamachi already configured. Open the VPN client you wish to use. Input the IP address of the VPN server on your Hamachi network into the client. The address entered should start with 5.xxx.xxx.xxx. You are now connecting to a VPN server over Hamachi.

Double the security and encryption. All done without touching any of the settings on your firewall.

The only problem is, OS X support is shaky. I may have to keep looking, I guess.
Security  Internet  Software  vpn  from google
august 2007 by citizenk
Microsoft Baseline Security Analyzer Automation
Introduction
One of the topics that an Exchange administrator needs to care about is the level of security of the Exchange servers regarding the patching level from the Security Update. In wide IT environment, Security Updates are most of the time in charge of a dedicated administrator responsible for security updates deployment using application such like Microsoft Windows Server Update Services (WSUS). In some scenario, this means that the Exchange admin depends on the WSUS admin to have a global report of the fixes applied or not on a bunch of servers. One of the main consequences in that case is that some delay may occur to get the information. We here propose to provide an easy and automate way to get the information on demand from a single workstation using command lines based on: Microsoft Baseline Security Analyzer (MBSA) v.2.0.1 (available for download here) MBSA 2.0 Scripting Samples (available for download here) The purpose of the batch will be to run MBSA against several identified remote servers, and then parse all MBSA reports produced into a single XML file to get a global overview of all servers security update version. Also, some corporate networks are protected from the Internet by a proxy and/or a firewall. The provided solution will help to not perform scanning against the Microsoft Update website, but using the offline security update cabinet file (WSUSScn2.cab) As always, some requirements need to be fulfilled...
...On the workstation and the remote computers
It is imperative that all remote computers needed to be scan have been updated with the latest version of the Windows Update Agent (WUA) (available here). In some case, the latest Windows Installer program should also be installed (available here). ...On the workstation only
Since security updates are released on the regular basis, it is mandatory to update frequently the offline security update cabinet file WSUSScn2.cab. This cabinet is available in direct download using the following link http://go.microsoft.com/fwlink/?LinkId=76054. Download the cabinet on the workstation, and move it in a directory ease of access. (ex: C:\Temp) If you wish to include the download of the cabinet within the automation job, you will have to create the proper script. If you use a proxy authentication to get access to the Internet, the script should include code to provide the necessary credentials. If you are not that involved with scripting, there are command line tools available on the Internet which permit downloading a file from a URL. Some tools even include parameters to perform an authentication against the proxy server. Microsoft Baseline Security Analyzer (MBSA) v.2.0.1
If you are already familiar with MBSA, then you know that the GUI version allow you to generate report of remote servers from a workstation. But did you know that MBSA also includes a command line tool allowing you to perform the same type of tasks and even more: MBSACli.exe. When you need to scan several computers, you can only specify an IP range using MBSA GUI, while with MBSACli you are able to specify a list of the computers to be scanned. For all command line parameters, type "mbsacli.exe /?" from a command prompt. We here proposed to run MBSACli.exe using the following parameters: mbsacli.exe /nd /nai /nvc /wi /catalog <path>\wsusscn2.cab /listfile <path>\servers.txt /nd: To avoid any download from the Internet /nai: To avoid WUA updates on the workstation that run MBSA, but also on remote servers. /nvc: To avoid check for new version of MBSA /wi: Permit to display all updates, even ones rejected by the WSUS server. Particularly useful for Exchange admin not allowed binding against SUS server. /catalog:<path>\wsusscn2.cabPermit to point MBSA to the local update cabinet. In our scenario, the cabinet is located on the workstation running MBSA. Though, we are here by-passing the use of an Internet connection. /listfile <path>\servers.txtThe servers.txt file contains NetBIOS name or FQDN name list in column of all servers to be scanned.

MBSA 2.0 Scripting Samples
After MBSACli.exe has run, we now have as many of MBSA report generated as number of servers to scan in the "servers.txt" file. By default, all MBSA report uses the .mbsa file extension and are located within the following path on the workstation: "C:\Documents and Settings\<username>\SecurityScans" The setup of MBSA 2.0 Scripting Samples is in fact an uncompressed installation. The default setup process proposes you to extract the files wherever you want. Once you've performed the setup process, locate the rollup.js script file within the unzipped folder. This script will allow parsing all MBSA reports into one single xml report as showed below: With such report, we are able to have a global overview of all fixes installed or not on remote servers. To perform such task, run the following command: cscript /nologo rollup.js -b>c:\XMLReportName.xml With this command line, all MBSA reports will be compiling within the XMLReportName.xml file. The XML file can be opened in Internet Explorer for reading. In order to transmit the XML report to another person, you will need to attach the rollup.xslt to the XML due to file dependencies. Also, there is no need to have MBSA installed to read the XML report. You will notice that MBSA reports names or folder path isn't mentioned in the command line. This means that by default, the command line will run against ALL reports located within the MBSA "SecurityScans" default path. Consequence is that prior any automation, you would need to perform a cleanup (deletion or archiving) of the "SecurityScans" directory content, using for example, the following command line: Del %Userprofile%\SecurityScans\*.* /Q Note: Another use of the rollup.js script would be to run against all MBSA report to provide information only regarding a specific bunch of security updates. To do so, run the following command: cscript /nologo rollup.js –b MS06-019 MS06-029>c:\XMLReportName.xml Such command line can be useful following a maintenance period on the environment to check that identified security updates have been properly installed on identified servers. Conclusion
We are now able to compile all seen command lines into a single batch file as follow: 1. Clean all previous MBSA report
Del %Userprofile%\SecurityScans\*.* /Q
2. Download latest WSusscn2.cab (using a script or other appropriate solution)
3. Perform new bundle of MBSA reports
mbsacli.exe /nd /nai /nvc /wi /catalog <path>\wsusscn2.cab /listfile <path>\servers.txt
4. Parse all MBSA reports into a single XML file
cscript /nologo rollup.js -b>c:\XMLReportName.xml
With this solution, Exchange Administrators are able to have a global overview on periodic basis of the current state of the Exchange servers regarding Security Fixes. References
Windows Installer 3.1 v2 (3.1.4000.2435) is availablehttp://support.microsoft.com/kb/893803 A new version of the Windows Update offline scan file is availablehttp://support.microsoft.com/kb/926464 MBSA 2.0 Scripting Sampleshttp://www.microsoft.com/downloads/details.aspx?FamilyId=3B64AC19-3C9E-480E-B0B3-6B87F2EE9042&displaylang=en Microsoft Baseline Security Analyzer v2.0.1 (for IT Professionals) http://www.microsoft.com/downloads/details.aspx?FamilyId=4B4ABA06-B5F9-4DAD-BE9D-7B51EC2E5AC9&displaylang=en - Jeremy Gagne
Tips_'n_Tricks  Tools  Security  from google
july 2007 by citizenk
Hacktivate » Reversing an ssh connection
One of the nice features of VNC is that you can reverse a connection. If you are behind a firewall (or a router doing NAT) that doesn’t allow incoming connections, VNC allows you to connect to a “listening server”. As soon as a connection is establi
ssh  security  howto  networking  vnc 
march 2007 by citizenk
Welcome to Errata Security
Examples of data seepage is what happens when you power-on your computer. It will broadcast to the world a list the list of WiFi access-points you've got cached on your computer, the previous IP address you used (requested by DHCP), your NetBIOS name, you
security  tools  sniffer  wifi  networking 
march 2007 by citizenk
Internet Security Tool | Free download protects from adware, phishing, spam, spyware and virus threats
CyberDefenderFREE 2.0 - The All-Free Internet Security Suite. Effective against Spyware, Viruses, Malware, Trojan virus, Adware, Phishing scams, Spam, and Backdoors.
security  software  freeware  windows 
november 2006 by citizenk
All Things Marked » HOWTO: Securely open TrueCrypt volumes in one click (Redux)
In the past, I wrote an article about a very easy way to mount and explore a TrueCrypt volume in one step. Some security issues came up about keeping the volume password in the batch file used to mount. This new article take that into account.
truecrypt  security  windows  tips  howto 
october 2006 by citizenk
Weak security in our daily lives@Everything2.com
a sequence of minimal length that, when you enter it into a car's numeric keypad, is guaranteed to unlock the doors of said car. It is exactly 3129 keypresses long, which should take you around 20 minutes to go through.
security  hacking  locks  cars 
september 2006 by citizenk
Bruce Schneier - The ID Chip You Don't Want in Your Passport - washingtonpost.com
RFID chips don't have to be plugged in to a reader to operate. Like the chips used for automatic toll collection on roads or automatic fare collection on subways, these chips operate via proximity. The risk to you is the possibility of surreptitious acces
travel  security  Privacy  article 
september 2006 by citizenk
BBC NEWS | UK | England | Somerset | Wearing helmets 'more dangerous'
The study found drivers tend to pass closer when overtaking cyclists wearing helmets than those who are bare-headed.
cycling  statistics  security  study 
september 2006 by citizenk
Seek and Ye Shall Be Found
The only way to remove this threat is for search companies to voluntarily delete the information from their search logs, foregoing whatever future revenue or marketing advantage they might be able to get from exploiting the data. If the companies persist
search  google  privacy  aol  politics  security 
september 2006 by citizenk
FairUse4WM - a WM/DRM removal program - Doom9's Forum
FairUse4WM is a GUI version of drmdbg that supports individualization version .3930 and some WM11 versions.
audio  copyright  drm  hack  security  windows  software  fairuse 
august 2006 by citizenk
B&TW: IE Priv-Sec
This page provides a guided tour of most of the major privacy and security settings within Internet Explorer. We'll cover the following aspects of privacy and security in Internet Explorer:
security  IE  browser  guide  privacy  tips 
december 2005 by citizenk
The Ethical Hacker Network - Essential Wireless Hacking Tools
Anyone interested in gaining a deeper knowledge of wireless security and exploiting vulnerabilities will need a good set of base tools with which to work. Fortunately, there are an abundance of free tools available on the Internet. This list is not meant
wireless  security  wifi  hacking  howto  software 
december 2005 by citizenk
Google Safe Browsing for Firefox
Google Safe Browsing is an extension to Firefox that alerts you if a web page that you visit appears to be asking for your personal or financial information under false pretences.
firefox  google  extensions  security 
december 2005 by citizenk
Email Address Spoofing at FrankDzedzy.com
Spoofed email is email that appears to come from one source, when it actually does not. Because of the simplicity of Simple Mail Transfer Protocol (SMTP), email spoofing is extremely easy to do.
email  security  article 
december 2005 by citizenk
Gmail Bug - www.elhacker.net
Or better said, exploit - Patched by Google since
bug  exploit  gmail  google  security 
november 2005 by citizenk
[no title]
The authentication process was optional until Monday. From now on, it will be required for all software updates except security patches
microsoft  piracyy  drm  security  updates 
july 2005 by citizenk
Major Security Flaw Found in Greasemonkey - MozillaZine Talkback
A serious security flaw has been found in the popular Greasemonkey extension for Mozilla Firefox, allowing websites the potential to access any file on a user's computer.
browsers  extensions  firefox  greasemonkey  security  news 
july 2005 by citizenk
Group: Secure Bluetooth with long PINs | CNET News.com
The Bluetooth Special Interest Group has told people to set eight-digit PINs when pairing two devices and to take other precautions, after a report described a way for hackers to crack the security codes on Bluetooth devices and seize control of them.
bluetooth  security  passwords 
june 2005 by citizenk
Schneier on Security: Hacking the Papal Election
As the College of Cardinals prepares to elect a new pope, people like me wonder about the election process. How does it work, and just how hard is it to hack the vote?
habemus-papam  security  election  vatican 
april 2005 by citizenk

related tags

#gmail  #html5  #security  activism  addons  admin  ads  advertising  advocacy  adware  anonymity  antispam  aol  apple  application  article  atm  audio  authentication  backtrack  bluetooth  browser  browsers  bug  bypass  cars  censorship  certificate  clever  code  cookies  copyright  cracking  cron  cryptography  culture  cycling  data  database  dns  download  drm  education  eff  election  email  encryption  exploit  extensions  facebook  fairuse  filter  firefox  flash  forensics  free  freedom  freeware  free_speech  funny  future  gmail  google  google-apps  greasemonkey  guest  guide  habemus-papam  hack  hacking  hacks  hardware  hosts  howto  htaccess  html5  humour  identity  identitytheft  IE  image  images  information  interesting  internet  interview  ipod  japan  keyboard  leopard  linux  lock-in  locks  login  mac  malware  marketing  md5  microsoft  mobile  monopoly  network  networking  news  openid  opensource  osx  passports  password  passwords  patches  patchtuesday  php  piracyy  plugins  politics  privacy  programming  putty  recovery  redux  reference  Releases  repair  repression  resource  rights  search  security  settings  sniffer  social  socialnetworks  socialsecurity  software  spam  spf  spyware  ssh  ssl  standards  statistics  study  surveillance  sysadmin  tech  technology  theft  tips  Tips_'n_Tricks  todo  tools  tor  tracking  travel  travelling  tricks  trojan  truecrypt  tunnel  tutorial  update  updates  usa  usb  utilities  utility  vatican  vnc  vpn  vulnerability  wardriving  web  webdesign  wep  wga  wifi  win7  win2000  windows  windows7  windows98  wireless  wordpress  wtf  xp 

Copy this bookmark:



description:


tags: