Friday, 16 November 2012

How to Recover Lost Security Code

THIS WILL WORK FOR ALL THE NOKIA BB5 HANDSETS like NOKIA 6120c, NOKIA 5700, NOKIA 6300, NOKIA 6630, and many otherzzz..

Download Nemesis Service Suite from the site mentioned above:

METHOD 1 " TO RECOVER THE CODE

1. CONNECT UR FONE VIA USB CABLE IN PC MODE & INSTALL THE DRIVERS FOR UR CELL FONE PROVIDED WITH NOKIA PC SUITE.THEN EXIT PC SUITE

2. THEN INSTALL Nemesis Service Suite

3. SELECT USB VIRTUAL DRIVE during installation (in case of nokia 6120c for nokia 5700 use diamond protection)

4. AFTER INSTALLATION OPEN IT, THEN CLicK ON SCAN BUTTON

5. AFTER THAT CLicK ON PHONE INFO, NOW CLicK ON SCAN

6. NOW CLicK ON PERMANENT MEMORY TAB given on right bottom of application

7. NOW CLicK ON READ, IT WILL READ THE PERMANENT MEMORY FILE & WRITE IT TO THE DISK

UR PM FILE WILL BE LOCATED IN THE PATH:

D:\Program Files\NSS\Backup\pm\356252*********.pm

open that PM file in NOTEPAD


8. now scroll uptil FIELD [308] and on the 5th RECORD ur security code is saved

like that

5=31303038350000000000 remove all the "3" digits and it will be like that

5= 10085 0000000000 now its 10085 thats it.UR LOCK CODE IS 10085

METHOD 2 TO RESET THE CODE

You need a Data cable that comes with your phone and Nemesis Service Suite(later named as NSS) installed on your PC..

Connect normally turned on phone to the cable and install drivers for it,is asked.
Start NSS and click on magnifier glass - marked with mouse cursor.

When driver and other NSS software informations are displayed,click on big Phone Info (1.) button and then on little Scan (2.) button.If everything is OK you will get message Done! (field marked with arrow).

Now click on big Tools (3.) button,

http://i50.tinypic.com/3011paw.jpg

then on tab Factory Settings (4.)

http://i47.tinypic.com/dewaza.jpg

now here,if you have a Symbian phone then you must check Symbian box (it is above the Reset button marked with 6.),if you have S40 3rd phone then leave Symbian unchecked.
Select User code (5.) if not allready selected and click on Reset (6.) button.
If everything goes well message Done will appear again in that field marked in second picture+those messages in regular information window.

http://i47.tinypic.com/2uxvbbr.jpg


That's it,your Security code is set to factory 12345 again.

—————————————-
Sent from my BlackBerry® wireless device

Confire and Using Proxychains in Backtrack 5

How to configure and use Proxychains in Backtrack 5

There are a lot of ways to hide your identity , either by single proxy or by multiple proxies like TOR which Xeo Hacker explained in a recent post.

But if u have BackTrack then nothing to worry about you can use proxy very easily and u can use multilple proxies also.

Well its called proxychains .. So lets get started

◘What it does?

Well proxychains is a inbuilt tool in backtrack to let u use proxy very easily. It uses proxy according to the configuration file , which we gonna config and it takes u to any address or url via multiple proxies

◘Introduction to Proxy chains.

well actually there is a configuration (.conf) file in etc folder . its named proxychains.conf . This is the file where u will do all ur stuffs and u'll hide your identity just by typing a single command once you configure.

Go to terminal and type following command then hit enter

♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
gedit /etc/proxychains.conf ♦
♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦

◘Modes or types of proxychains

There are 3 modes of proxychains

☻dynamic_chain:This uses the list of proxies in the same order as u placed
☻strict_chain:almost similar to previous one except it will not work if it gets any dead proxy server
☻random_chain:this is the best .. this chooses and uses proxies randomly

◘Configuration of the file.

u have to open that file with root privilege to edit that file so first issue following command

♦♦♦♦♦♦♦♦
sudo su ♦
♦♦♦♦♦♦♦♦

then issue this command

♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
gedit /etc/proxychains.conf ♦
♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦

now you have to follow these steps

comment out the mode u want to use

♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
----------------------------START-------------------------------
♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
strict_chain
#
#Strict-each connection will be done via chained proxies
#all proxies chained in order as they appear in the list
#all proxies must be online to play in chain
#Otherwise EINTR is returned to the app
#
//#random chain
#each connection will be done via random proxy
# (or proxy chain, see chain_len) from the list
#this option is good to test your IDS
♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
--------------------------END----------------------------------
♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦

as u can see i have commented out random_chain by "//" .
now go to any proxy server list .. just google it .. i'll be using socks4 proxy servers so search on google .. then copy some IPs and their port no. and then paste it where it says add proxy here . refer the pic at last i have added some IPs.

♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
---------------------------START-------------------------------
♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
[ProxyList]
#add proxy here
#meanwhile
#defaults set to "tor"
socks4 127.0.0.1 9550
socks4 xxx.xx.xx.xxx ****
socks4 xxx.xx.xx.xxx ****
socks4 xxx.xx.xx.xxx ****

Now your configuration is done …..

◘How to use proxychains

to use proxychains just have to issue some commands as listed below.

proxyresolv [the site u want to open]
proxychains firefox [the site u want to open ] (for firefox)

♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
(For those willing to ask stupid questions)

NOTE: xxx.xx.xx.xxx = IP address (of the socks4)
NOTE: **** ports

♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦♦
Sent from my BlackBerry® wireless device

Tuesday, 6 November 2012

AfricaCom 2012, Cape Town

Now in its 15th year, AfricaCom is embracing all aspects of the converging telecoms, media & ICT sectors to deliver the most inspiring, exciting and thought-provoking event yet. With 200+ speakers and over 125 scheduled hours of value-packed content, and newly extended to 3 days, AfricaCom offers something for everyone with visionary keynotes, specialised streams, interactive panel discussions, workshops, demos, networking opportunities and more.
The AfricaCom programme has been overhauled to reflect the market's vibrant new dynamics:

The conference will provide the best opportunity for all stakeholders to debate the changes in the digital ecosystem, to share visions, to build partnerships and to develop attractive services that will fit the needs of customers. New with an extra day, the programme includes eye-opening keynotes, engaging focus sessions, three co-located conferences, compelling workshops, more interactive panels and expertise from a much wider range of digital experts.

Speakers include:

Simon Brunozzi - Technology Evangelist, AIPAC and New Regions, Amazon Web Services

Solomon Mugera - Africa Editor, BBC

Kasia Kieli - President & Managing Director, Discovery Networks CEEMEA

Konstantin Dyshlevoy - CEO, Dune HD

Nicola D'Elia - Growth Manager Africa, Facebook

Brett St Clair - Head of Mobile in South Africa, Google

 Wayne Gosling - Co-CEO, Groupon South Africa

Nic Haralambous - CEO, Motribe

 Alex Okosi - SVP and MD, MTV Networks Africa

Andy Volk - VP Developer Relations , Mxit

Peter Vesterbacka - Mighty Eagle, Rovio

 

New additions to the event include:

EXPANDED & EXTENDED EXHIBITION: more opportunities to network with 7,000 fellow industry executives, more chances to appraise the competitor landscape, more chance to dabble and demo the latest technologies and applciations.

AFRICACOM INSIGHTS – future-proof your business with expert anayslst briefings and based on proprietary primary data not available anywhere else. PLUS an Entrepreneurs Hub and Technology Workshops

EXTENDED MASTERCLASS DAYS – the overwhelmingly popular MasterClass sesssion have been extended to a 3rd day. Packed with practical, stimulating, interactive persentations this programme plays to standing room only…

 

Event Details:

When: 13 – 15 November 2012

Where: Halls 1, 2, 3 and 4 of the Cape Town Convention Centre

For more information visit www.africa.comworldseries.com
Sent from my BlackBerry® wireless device

Thursday, 25 October 2012

Creating and Using DLL in C# sihle khalala

A dynamic link library (DLL) is a collection of small programs, any of which can be called when needed by a larger program that is running in the computer. The small program that lets the larger program communicate with a specific device such as a printer or scanner is often packaged as a DLL program (usually referred to as a DLL file). DLL files that support specific device operation are known as device drivers.

Definition

dynamic link library (DLL)

A dynamic link library (DLL) is a collection of small programs, any of which can be called when needed by a larger program that is running in the computer. The small program that lets the larger program communicate with a specific device such as a printer or scanner is often packaged as a DLL program (usually referred to as a DLL file). DLL files that support specific device operation are known as device drivers.

//Definition: A DLL file, short for Dynamic Link Library, is a type of file that contains instructions that other programs can call upon to do certain things. This way, multiple programs can share the abilities programmed into a single file.//

DLLs are Dynamic Link Libraries, which means that they're linked into your program at run time instead of build time. There are three parts to a DLL:

*the exports

*the code and data

*the import library

The code and data are the parts you write - functions, variables, etc. All these are merged together, like if you were building one big object files, and put into the dll. They are not put into your .exe at all.

The exports contains a list of functions and variables that the dll makes available to other programs. Think of this as the list of "global" symbols, the rest being hidden. Normally, you'd create this list by hand with a text editor, but it's possible to do it automatically from the list of functions in your code. The dlltool program creates the exports section of the dll from your text file of exported symbols.

The import library is a regular UNIX-like .a library, but it only contains the tiny bit of information needed to tell the OS how your program interacts with ("imports") the dll. This information is linked into your .exe. This is also generated by dlltool.

The advantage of DLL files is that, because they don't get loaded into random access memory (RAM) together with the main program, space is saved in RAM. When and if a DLL file is needed, then it is loaded and run. For example, as long as a user of Microsoft Word is editing a document, the printer DLL file does not need to be loaded into RAM. If the user decides to print the document, then the Word application causes the printer DLL file to be loaded and run.

A DLL file is often given a ".dll" file name suffix. DLL files are dynamically linked with the program that uses them during program execution rather than being compiled with the main program. The set of such files (or the DLL) is somewhat comparable to the library routines provided with programming languages such as C and C++

Example

I received an error message when my computer started up that said I was missing a particular DLL file. After an exhaustive search on the Internet, I found out that I would have to reinstall Windows to fix it!"

///new code

Hi, today i will explain you How to create and manage library(.dll) files in your unity project.


Tools:
1.Unity3D Pro
2.VISUAL C# 2010 EXPRESS or Visual Studio 2010,
3.C# Basic knowledge
4.Brain
5.Hands 8-).


Starting new Project:

Open VISUAL C# 2010 EXPRESS or Visual Studio 2010, go to File>New Project>Visual C#>Class Library. Set Your file name(I named it Tutorial) and Choose(.NET Framework 3.5) not above, otherwise unity will not read .dll.

after setup it will open something like this.

Code:  

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace Tutorial
{
    public class Class1

    {

    }

}


Ok lets start coding

for more beautifulnes lets change class name (REMEMBER: when you change class name, change also file name in the project) I actualy changing name of the project .cs file name, and it automaticly changing class name for me 8-) .

Now my code will look like this:


Code: select. Line 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Tutorial

{

    public class tut

    {

      //code goes here

    }

}


the (namespace Tutorial) will be used in our unity later, it`s mean we must leave it exactly that it or you can change it to other name, for now i will use (namespace Tutorial);

Now i will put some basic function with name "textview" and it will be string. Then i will returne my name.

to construct public function in c# you make it like this (public [string,int,etc...] [function name]() { }).

OK my function is like this

Code: select line 

public string textview()

        {

            return "Mr.Smart";

        }


Now my code will look like this:


Code:  code select

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Tutorial

{
    public class tut

    {

        public string textview()

        {
            return "Mr.Smart";
        }

    }

}


My dll is ready, i need to build it. go to Build>Configuration Manager... and change debug to release.

your dll must be builded in yourproject\bin\Release folder.

Now go to your Unity project folder and open Assets folder, in that folder make "new folder" called "Plugins".

This will be you plugin folder, paste your.dll to that folder, Unity will automaticly import it.

Usage is very seample open your c# script in your unity project.
Lets say that we make new script and there is nothing.

Blank c# script with class name tutorial.


Code:  code select

using UnityEngine;
using System.Collections;
public class tutorial : MonoBehaviour {

    // Use this for initialization

    void Start () {
    }

    // Update is called once per frame

    void Update () {
    }
}

to get dll work in our script we must make new destination to it.

seamply we will put in upper side "using [your dll file name];" it will automaticly popup if your dll script will not have any error, that is why we didnt delete the "namespace Tutorial" from our dll code.

when we inported dll we must make new variable with the new class of our dll.

for me it will look like

Code: select 1 line

public tut a =  new tut();

t somthing like to make new Vector3 class.

We have imported dll , we have new class. Now we need to call function in our "tut()" class.

it will look like this

Code: select line  

a.textview()

and i will print it in my awake function

Code: select lines  

void Awake(){
        //printing
        print(a.textview());
    }

My code finaly will look like this:

Code: select lines  

using UnityEngine;
using System.Collections;
using Tutorial;
public class tutorial : MonoBehaviour {  
   //making the new class
    public tut a = new tut();
    //on awake
    void Awake(){
        //printing
        print(a.textview());
    }
    // Use this for initialization
    void Start () {
    }
    // Update is called once per frame

    void Update () {
    }
}



Sent from my BlackBerry® wireless device

Monday, 1 October 2012

HP announces Windows 8 tablet _ ElitePad 900

HP has announced its latest device,  a 10-inch Windows 8 tablet called the ElitePad 900 aimed at professionals.

The tablet comes wrapped in an aluminium chassis with a Gorilla Glass display.

The tablet, released with a number of accessories, runs an Atom-based Intel Clover Trail processor, with up to 2GB of RAM and up to 64GB of SSD storage. The device also offers approximately 10 hours of run time and optional 3G/4G.

Other features of the device include a screen resolution of 1,280 x 800, 8-megapixel rear camera and a 1080p shooter up front, slots for microSD cards and 3G/4G SIMs.

HP will also be making special smart jackets available with the device that provide additional functionality such as a built in keyboard, removable battery and USB ports.

The ElitePad 900 is expected to go on sale in the U.S. in January 2013.

Source: Engadget
Sent from my BlackBerry® wireless device

B2B Indaba 2012: Connecting Entrepreneurs

The B2B indaba is an informative networking session created for small business entrepreneurs and will be held at the Cape Peninsula University of Technology. The Indaba aims to educate small business entrepreneurs and aspiring entrepreneurs about the importance of creating and maintaining an online presence for their businesses and brands.

The indaba will take place over a period of two hours. This session will include speakers from different business background who have a respectable knowledge of online marketing, small business entrepreneurship and online presence management for businesses and brands.

Each speaker has a maximum of 30 minutes to present on their business, the importance of an online presence for a business and also good entrepreneurship in general.

Attendees will include small business entrepreneurs from Cape Town CBD and surrounding areas, Cape Peninsula University of Technology (CPUT) Entrepreneur students, online media and invited delegates. All attendees will be given an opportunity to comment or ask question related to the speaker's business industry or about online presence management.

The objectives of the Indaba include the following:

Building relationships between businesses and entrepreneurs, and entrepreneurial students.

Informing small business entrepreneurs of the importance of an online presence for their businesses and brands.

Creating networking opportunities for small business entrepreneurs.

More than anything else it is about knowledge transfer, the promotion and support of entrepreneurial growth and development in Cape Town and ultimately South Africa.

Event Details:

When: 6th of October 2012

Time: 11:00 for 11:30 – 13:30

Where: Atrium Room, Cape Peninsula University of Technology

Cost: R100 per person (limited seats available)

To RSVP for this event click here and enter the information below:
Event ID: 1469
Passwords: BBINDABA
Sent from my BlackBerry® wireless device

Thursday, 27 September 2012

Final Countdown to the Digital Edge Live Show National Assembly 2012

The final countdown to this year's premier digital marketing event has begun. All speakers, sponsors, and panel discussion topics have been confirmed and in just one week, these top local and international speakers will be taking to the floor at the Cape Town City Hall for the Digital Edge Live Show – National Assembly on October 4th.

We're all aware that digital marketing is in constant flux. The breakneck pace of innovation alone is causing such dynamic change in this industry that sifting the core trends from the noise in order to ascertain which forces will shape the digital landscape, is no easy feat. The 2012 sitting of the National Assembly has called together a working committee to aid in this sifting process.

Top digital innovators from a range of the country's digital marketing elite will deliberate and state their case with thought-provoking discussions:

Our first panel question: "Are digital agencies 'blinding clients with science'?" will be deliberated by cabinet members Matthew Buckland, Nikki Cockcroft, Ivan Moroke, Arthur Charles Van Wyk, and Andy Gilder, who will deliver an array of practical solutions.

Our second panel will seek to determine whether "South African digital work really is world class" – a question that will be tackled by industry stalwarts Graham Warsop, Rob Stokes, Pete Case, and Jason Xenopoulos.

Panel three's proposed bill: "Building long term social media communities is more important than creating expensive conceptual campaigns" will be answered by the following representatives – Mike Sharman, Dave Moffat, Nic Wittenberg, Dan Pinch and Isis Nyongo.

The final countdown to this year's premier digital marketing event has begun. All speakers, sponsors, and panel discussion topics have been confirmed and in just one week, these top local and international speakers will be taking to the floor at the Cape Town City Hall for the Digital Edge Live Show – National Assembly on October 4th.

We're all aware that digital marketing is in constant flux. The breakneck pace of innovation alone is causing such dynamic change in this industry that sifting the core trends from the noise in order to ascertain which forces will shape the digital landscape, is no easy feat. The 2012 sitting of the National Assembly has called together a working committee to aid in this sifting process.

Top digital innovators from a range of the country's digital marketing elite will deliberate and state their case with thought-provoking discussions:

Our first panel question: "Are digital agencies 'blinding clients with science'?" will be deliberated by cabinet members Matthew Buckland, Nikki Cockcroft, Ivan Moroke, Arthur Charles Van Wyk, and Andy Gilder, who will deliver an array of practical solutions.

Our second panel will seek to determine whether "South African digital work really is world class" – a question that will be tackled by industry stalwarts Graham Warsop, Rob Stokes, Pete Case, and Jason Xenopoulos.

Panel three's proposed bill: "Building long term social media communities is more important than creating expensive conceptual campaigns" will be answered by the following representatives – Mike Sharman, Dave Moffat, Nic Wittenberg, Dan Pinch and Isis Nyongo.

To close the show, Nathan Martin, world-renowned as DeepLocal's founder, will be making the final address –The Maker Culture – which promises to be a wonderfully entertaining and highly informative talk; a game-changer for the local marketing industry.

The Digital Edge Live Show is also proud to announce that one of South Africa's leading banks, Nedbank, will be sponsoring the highly-anticipated event. Nedbank has built a reputation as South Africa's 'green' bank while at the same time making things happen in the sponsorship arena.

The Digital Edge Live Show – National Assembly 2012 is guaranteed to challenge ordinary ways of thinking. Whether you are tech savvy, a fan of all things digital, or looking to broaden your horizons by entering the fascinating world of digital marketing – this is the one event you don't want to miss!

Book your tickets with the Commission of Enquiry – Living Your Brand – at bookings@livingyourbrand.co.za or go to www.thedigitaledge.co.za for more information
Sent from my BlackBerry® wireless device