Πέμπτη 17 Μαρτίου 2011

To thegreekz έκλεισε ! Σίγουρα?


Όσοι από εσάς (και ξέρω είστε πολλοί) ήσασταν μέλη του Thegreekz.com τότε θα απογοητευτήκατε από το κλείσιμό του. Αυτό το φόρουμ λειτουργούσε σαν μέρος ανταλλαγής λινκς από τις ποιο δημοφιλείς υπηρεσίες FileHosting.
Αυτά ήταν τα κακά νέα.
Τα καλά είναι ότι το φόρουμ συνεχίζει την λειτουργία του με κάποιες αλλαγές... στο simplegr.com . Όσοι ήταν μέλη μπορούν να κάνουν είσοδο με το ίδιο όνομα χρήστη και κωδικό.
Για τους νέους χρειάζεται πρόσκληση!
Ένα καλό ακόμα φόρουμ είναι το activeloads και το undersec.
Το τελευταίο δεν χρειάζεται πρόσκληση...

Δευτέρα 10 Ιανουαρίου 2011

How to install Packages on Jailbroken PS3 3.55


Πως να κάνετε Jailbreak στο PlayStation 3 και να εγκαταστήσετε πακέτα στο 3.55 Firmware





Step 1:
Plug a USB stick into your computer
Step 2: Download PS3UPDAT.PUP file.
Step 3: Create folder PS3 and then create folder UPDATE inside it.
Step 4: Unzip Jailbreak.zip to PS3UPDAT.PUP and put PS3UPDAT.PUP file in /PS3/UPDATE/ folder of your USB drive.
Step 5: Power down you PS3 console and put USB drive.
Step 6: Now press and hold the power button, the system will startup and shutdown again.
Step 7: Release the power button, then press and hold power again, you’ll hear one beep followed by two consecutive beeps.
Step 8: Release power then follow the on-screen instructions. You’re now in the recovery menu.
Step 9: Connect the USB device and select “System Update.”
Step 10: Choose Update via Storage Media
Step 11: It will say it found Version 3.55-jb
Step 12: Choose OK
Step 13: Accept Conditions and Install Update
Step 14: After less than a minute, your PS3 will update, beep 4 times then shut down.
Step 15: Power up your PS3 (You will have to do it on the console and not by the controller)

Voila!! Your PS3 console on firmware 3.55 is jailbroken now.


Step 1: Plug your USB stick into your computer
Step 2: Drop the test.pkg into the root of the USB stick
Step 3: Plug your USB stick into your PS3
Step 4: Navigate to the Game Tab
Step 5: Choose Install Package Files
Step 6: Select the test.pkg
Step 7: After it installs you will find the test package from geohot installed below the Install Package Files folder

Note: With geohot’s PS3 jailbreak, you can't play backup games or pirated games or whatever you choose to call them. You can install packages with the provided installer. Geohot will be releasing all the required tools to sign the homebrew soon.
Thanks to StealthBravo for the instructions !



Το μόνο που μένει έιναι η community να κυκλόφορηση νέα πάκετα...

Σάββατο 9 Οκτωβρίου 2010

Exploits and Hackers

Exploits and Hackers via Stonelaughter

The life of the hacker is a mysterious one to most people and I'm no exception. So - being a person who likes to jailbreak his iPhone when he can, and someone who has a little computer knowledge on various platforms, I decided to have a look around and see what I could find out.

So it turns out that what a hacker spends his hack time doing is simply playing with his target device. A lot. When I say playing, I don't mean surfing the web with it or whatever; I mean connecting it to various computers in various ways, sending commands to it by various means, sending nonsense to it to see if it interprets it as NON nonsense and so on. The end purpose of all this is to see if there are any mistakes in the device's underlying systems which could be used to make the device lose control of itself.

In the Hacker's world, anything that makes his target device crash, or reboot itself, or a program fail, is a GOOD thing; it's his way to try to gain control over the device. Let's look a little deeper.

A crash is a computer's way of dealing with something it hasn't been programmed for. The programmer tries like crazy to cover all eventualities and make sub-programs which will deal with them in a nice clean way. Sometimes he fails; and that's when the operating system takes over and says "whoa that doesn't make sense, let ME deal with it". Usually by closing down the offending program and losing all the work you did in it. However, when the program which gets confused is the operating system itself, there's very little left - so the programmer who wrote it sends the execution to an "Exception routine" which usually makes a record of the state of the computer at the time (CPU registers, memory contents, the address at which the exception occurred, etc) and then either sits in a "failed" state or reboots itself. This puts the computer back in a known state so that it can start work again. The record of what was happening when the crash occurred enables programmers to figure out what caused the crash and repair it. Or exploit it.

So - how does an exploitable crash help the hacker? Well - when an OS crashes, it has basically lost control of the hardware. Usually, while an OS is running, it has absolute control over what happens to the files, hardware and memory contents of the computer; it controls what and who are allowed access to which resources in the machine. When it loses control, it is sometimes in a state for a short period where execution can be redirected to anywhere the hacker likes. When this occurs, the hacker sees the signs and writes a program which deliberately induces the crash, after setting up the redirection to his own program. So for instance, in the case of the JailBreakMe.com (Star) jailbreak, a PDF file malformed in a particular way caused the routines in iOS 4.0.1 and lower to fail and leave the computer in an uncontrolled state (in one way or another). The jailbreak program was loaded from a website and run; and I assume that what it did was immediately download a deliberately malformed PDF file from the website and redirect the crash-handling part of iOS 4.0.1 into itself. It would then arrange to use this state to gain access to the phone as the administrator or "root" user. Once a person has access as a root user, he can do ANYTHING. With this access, the program would then set up the phone such that the user can do things which the phone maker did not intend; such as for instance loading themes onto the iPhone or adding applications from sources not digitally signed by Apple.

Examples of the sorts of things which can be utilised by hackers are:

* Buffer Over/Underruns - when a program overfills a buffer by mistake, or tries to take out more values than a buffer contains;

* Negative numbers being returned to a program which expects only positive numbers;

* Pointers pointing to non-existent or protected memory areas; or string length indicators being negative

etc etc etc. All these conditions are the sorts of things which the programmer would have written routines for, had he thought they were possible - having made the decision they were impossible (or having not even thought of them) the program cannot continue to function when they occur and therefore its results and execution path cease to make sense. The operating system either fails completely and goes to its "complete crash" mode or detects the condition and closes the program which crashed. When the OS retains control the condition is only of use to a hacker trying to gain access to the program which crashed; however when the OS fails completely, the hacker begins to get REALLY excited.

Κυριακή 21 Μαρτίου 2010

Dr Net@Libre Magazine Μάρτιος 2010


Cpu αυτός ο γνωστός μας Άγνωστος!

Κάθε μέρα δέχομαι ερωτήσεις για συμβουλές αγορές Η/Υ. Τα προηγούμενα χρόνια, θα αρκούσε να έλεγες AMD ή INTEL αλλά τώρα τα πράγματα έχουν αλλάξει πολύ, τόσο ώστε δημιουργείτε ένας εσωτερικός ανταγωνισμός από τα πολλά μοντέλα CPU.
Αυτό που χαρακτήριζε κάποτε το είδος του Η/Υ ήταν ο επεξεργαστής, πάνω στον οποίον χτίζαμε το υπόλοιπο σύστημα. Τότε δεν μπορούσες να διαλέξεις φτηνούς επεξεργαστές με απίστευτες επιδόσεις και αναγκαζόσουν αν ήθελες κάτι καλό να το πληρώνεις μια περιουσία. Πόσα λεφτά ξόδεψε η INTEL για να λανσάρει το αυτοκόλλητο “Intel Inside” ώστε να διαφημίζει τον επεξεργαστή και να μην ξέρει ο κόσμος μόνον τον συναρμολογητή!
Στο στρατόπεδο της INTEL επικρατεί ένα χάος, με τα τόσα διαφορετικά socket και γενικά η προσπάθεια να τους ξεχωρίσουμε βάση του ονόματος τους όπως παλιά είναι αδύνατη! Τα chips που κυκλοφορούν αυτή την στιγμή έχουν την γενική ονομασία Core i x δηλαδή i7 i5 i3.
Με socket 1366 έρχονται οι Core i7 9xx που αποτελούν την πρώτη γενιά επεξεργαστών και είναι και οι πιο γρήγοροι αλλά ταυτόχρονα και ποιο ακριβοί .Αυτοί εφοδιάζονται με τέσσερις πυρήνες με Hyperthreading ενεργό, λειτουργία Turbo Boost, 3 κανάλια μνήμης και αναγκαστικά χρειάζονται chipset Intel X58 με αποτέλεσμα όλα αυτά να αυξάνουν την τιμή της μητρικής.
Με socket 1156 δουλεύουν όλοι οι υπόλοιποι Core i εκτός από τους 9xx που έγραψα ποιο πάνω, άρα οι core i7 σειράς 8xx καθώς και οι i5 i3.Στην δεύτερη γενιά (Lynnfield) ανήκουν οι Core i7 8xx καθώς και ο Core i5 750. Η τρίτη γενιά (Clarkdale) που είναι και η πιο πρόσφατη περιλαμβάνουν τους Core i5 6xx, Core i3 5xx που η βασική τους διαφορά είναι ότι είναι διπύρηνοι και ενσωματώνουν μέσα στο ίδιο chip και κύκλωμα γραφικών!
Στην άλλη μεγάλη πλευρά της AMD τα πράγματα σίγουρα είναι ποιο απλά αλλά όχι όσο θα θέλαμε!
Εδώ συναντάμε τους Phenom II Χ4 που μας δηλώνουν ότι τετραπύρηνοι ακολουθημένοι από τριπύρηνους και διπύρηνους με αντίστοιχα ονόματα X3,X2. Με αυτό το σκεπτικό δημιουργήθηκαν και οι Athlon II οι οποίοι με την σειρά τους καλύπτουν χαμηλότερες απαιτήσεις! Το καλό με την AMD είναι το socket αφού όλοι υποστηρίζουν και τα δύο socket της AMD( Socket AM2+/AM3).
Το πρόβλημα που τίθεται τώρα στην επιλογή πλατφόρμας και μοντέλου είναι καθαρά για μένα πρώτα οικονομική παράλληλα βέβαια με τις ιδιαίτερες προτιμήσεις του καθενός. Το τέλειο παράδειγμα είμαι εγώ αφού τα πρώτα χρόνια της AMD επειδή παρατηρούσα πολλά προβλήματα ασυμβατότητας και θερμοκρασίας είχα απορρίψει τους φθηνούς AMD για τους ακριβούς INTEL. Από τότε δεν άλλαξε τίποτα μέσα μου και δεν σκέφτηκα ποτέ να δοκιμάσω έναν AMD.
Τώρα βέβαια θα μου πείτε αυτό είναι λίγο εγωιστικό γιατί μπορεί με τα χρόνια κάτι να έχει αλλάξει, αλλά όπως λένε “κάτι που δουλεύει μην το πειράζεις” γι αυτό και εγώ έμεινα προσκολλημένος στην Intel.
Η μαύρη αλήθεια βέβαια είναι ότι τώρα οι επεξεργαστές παρέχουν άφθονη ισχύς που ο περισσότερος κόσμος δεν θα την εκμεταλλευτεί ποτέ και συνήθως πληρώνει υπέρογκα ποσά καθαρά και μόνο από το καλό μάρκετινγκ των εταιριών! Για καθημερινές εργασίες προτιμήστε κατά την γνώμη μου ένα φτηνό σετ επεξεργαστή- μητρικής πλακέτας ώστε να μπορείτε να επενδύσετε σε μια καλή οθόνη η οποία είναι για μένα ίσως το ποιο σημαντικό κομμάτι του πάζλ, αφού κάθε αστοχία σας στην αγορά της βλάπτει άμεσα την υγεία σας!
Τι να τους κάνεις τους οκτώ πυρήνες αν παίζεις τα χαζοπαιχνίδια του Facebook η διαβάζεις το status της Κατίνας.
Flash News

Προβλήματα στο Facebook

Πριν μερικές ημέρες σοβαρά προβλήματα παρατηρήθηκαν στο Facebook με την αποστολή μηνυμάτων αφού λόγο μιας δυσλειτουργίας στα συστήματα της εταιρίας κάποια μηνύματα που είχαν αποσταλεί από διάφορους χρήστες όχι μόνο δεν έφτασαν στους αρχικούς παραλήπτες, αλλά προωθήθηκαν και σε διαφορετικούς με αποτέλεσμα να υπάρχει κίνδυνος σοβαρού επεισοδίου λόγω προσωπικών δεδομένων. Εκπρόσωποι του Facebook δήλωσαν ότι την περίοδο της βλάβης όσοι είχαν πρόβλημα αποκλείστηκαν από τον λογαριασμό για λόγους ασφαλείας.


Samsung Electronics, Απευθείας διανομή των προϊόντων στην ελληνική αγορά

Μετά από χρόνια τερματίζεται η συνεργασία με τον όμιλο εταιρειών Φουρλή και αναλαμβάνει η Samsung να διανέμει απευθείας τα προϊόντα της στην ελληνική αγορά. Το νέο αυτό επιχειρηματικό σχήμα είναι απόρροια της παγκόσμιας στρατηγικής της εταιρείας να δραστηριοποιείται μέσω των τοπικών θυγατρικών της γραφείων σε κάθε αγορά ξεχωριστά, με στόχο μία πιο άμεση πρόσβαση στον τελικό καταναλωτή. Η Samsung κατέχει την πρώτη θέση σε πωλήσεις τηλεοράσεων και σε άλλες ηλεκτρονικές συσκευές.

Bug στα πρώτα playstation 3 προκαλεί σφάλματα σε On και Off line games.
Ένα bug στο εσωτερικό ρολόι του PS3 προκαλεί προβλήματα στα οι χρήστες λαμβάνουν διάφορα error messages, δεν μπορούν να παίξουν παιχνίδια και χάνουν Trophies και δεδομένα. Εμφανίζεται στα πρώτα PS3 τα οποία είναι πιο παλιάς κατασκευής σε σχέση με τα slim που κυκλοφόρησαν αργότερα τα οποία δεν αντιμετωπίζουν κανένα πρόβλημα. Η sony υποσχέθηκε να λύση το πρόβλημα σε λίγες ώρες ώστε να μην επηρεαστούν πολλοί χρήστες.

Πόλεμος δηλώσεων μεταξύ Apple και Adobe

Μιλώντας σε σύσκεψη κεκλεισμένων των θυρών, ο Steve Jobs φέρεται να εξαπέλυσε σφοδρή επίθεση κατά της Adobe, εστιάζοντας τα πυρά του στην τεχνολογία Flash. Συγκεκριμένα ο Jobs μίλησε με βαριά λόγια για την πλατφόρμα της Adobe, χρησιμοποιώντας χαρακτηρισμούς όπως παρωχημένη και υπερβολικά απαιτητική. Ο ισχυρός άνδρας της Apple δήλωσε ότι η τεχνολογία Flash δεσμεύει πολλούς πόρους από τον επεξεργαστή του συστήματος, ενώ παράλληλα έχει σοβαρά θέματα ασφαλείας. Σε άλλη σύσκεψη με συνεργάτες του, ο Jobs φέρεται να είπε ότι το Flash είναι η κύρια αιτία των crashes που αναφέρονται σε υπολογιστές της Apple, προσθέτοντας ότι το μέλλον ακούει στο όνομα HTML5.