Il concetto di css pare sia sottovalutato. Cosi` questi signori hanno tirato in piedi un sito che ne mostra tutte le potenzialita`:
Il mio preferito e` deco, oggi ci avro` perso un’oretta… mi pareva di sfogliare un album di fotografie!
Coffee for the mind, pizza for the body, sushi for the soul.
Il concetto di css pare sia sottovalutato. Cosi` questi signori hanno tirato in piedi un sito che ne mostra tutte le potenzialita`:
Il mio preferito e` deco, oggi ci avro` perso un’oretta… mi pareva di sfogliare un album di fotografie!
Prima di tutto: attiva di default il firewall sulla connessione di rete.
Da una parte, possiamo dire “finalmente”, dall’altra ovviamente smettono di funzionare moltissime cose.
Oserei dire, il modo sbagliato di fare la cosa giusta.
Alcune pare che abbiano smesso di funzionare definitivamente, nel senso che non e` possibile configurare XP diversamente e ripristinare il comportamento precedente a SP2, ma che l’unico modo di sistemare le cose sia disinstallarlo.
Una di queste cose e` Nmap, visto che e` stato rimosso il supporto alle ‘raw socket’… La risposta ufficiale di Microsoft e` stata:
“We have removed support for TCP sends over RAW sockets in SP2.
We surveyed applications and found the only apps using this on XP were people writing attack tools.”
Anche i signori di Juniper credo siano contenti, visto che SP2 rompe il loro software per fare VPN.
Attack tools. *sigh*
Guardavo il blog del SIGGRAPH04 (manifestazione che merita sempre di essere tenuta d’occhio).
Un gruppo ha catturato una serie di lettere scritte con un LED e poi ha tirato su una paginetta che compone stringhe a piacimento :)
Guardate qui!
http://www.jbuhler.com/luxe/index.html
Una soluzione al problema del “Unauthorized network card” sui thinkpad recenti.
Grazie a Tisheng Chen (tishengchen@yahoo.com).
In recent IBM thinkpad systems, there is a limit to allowed MiniPCI wireless cards.
When an unauthorized card is plugged in, the system doesn’t boot and halt with an error message like:
ERROR
1802: Unauthorized network card is plugged in
Power off and remove the miniPCI network card.
I met this 1802 error problem several months ago, and since then my wifi card was used in a very clumsy and inconvenient way. I used to boot to LILO menu or Windows system first, then suspend and plug in the card. After that, when the system is awake, the card is working.
Recently, I learned two solutions to attack this problem. One is to crack the BIOS by modifying the PCI_ID list of allowed cards in the BIOS, as suggested by Paul Sladen and Matthew Garrett.
(Reference: http://www.paul.sladen.org/thinkpad-r31/wifi-card-pci-ids.html)
The other way is unbelievably simple. There is a byte in CMOS which controls whether an “unauthorized” card is allowed or not. That’s 0x6a, actually only the bit 0x80. The program to unlock the authorization mechanism is like (asm):
MOV DX,0070
MOV AL,6A
OUT DX,AL
MOV DX,0071
IN AL,DX
OR AL,80
OUT DX,AL
MOV AX,4C00
INT 21
The program can be downloaded from: http://jcnp.pku.edu.cn/~shadow/1802/no-1802.com
To use this program, you need to boot to DOS.
The CMOS solution is safe, but I’m not sure that it works for all recent thinkpads and all cards. The BIOS crack sure does, however it is difficult and dangerous.