Google Adsense

Install and Configure the Email Server in Windows Server 2003


Introduction

This tutorial will help you to install and set up a few email accounts, by using the built-in POP3 Service in Windows Server 2003. I will assume you have basic knowledge about the Windows Server family and Mail Servers, but I have tried to make this tutorial as easily comprehensible as possible. The tutorial has been tested on Windows Server 2003 Enterprise Edition but should also work on Windows Server 2003 Standard Edition. I will not cover MX records and other similar things in this release.
To follow this tutorial you need a stand alone server. You can of course use a Domain Controller, but that assumes you understand when to not follow the tutorial and use other settings (i.e. authentication method).
Install the Email Server
You can install the Email Server by using Add or Remove Windows Components or Manage Your Server. In this tutorial we will use the latter, because it's the quickest way to get this up and running. Manage Your Server is a bit easier to use too, because it will prompt you for the domain you want to use during setup. That will not Add or Remove Windows Components do, and we have to do everything manually.
If it's not open, start Manage Your Server by clicking Start->Programs->Administrative Tools->Manage Your Server.
  • Click on Add or remove a role.
This will start the Configure Your Server Wizard. Read the text and make sure you have connected all the necessary cables and all the other things it says you should do before continuing.
  • Click Next
The wizard will now detect your network settings. This will take a while depending on how many network connections you have
We now come to the step where we add and remove roles for our server. We will add the Mail Server role. I also suggest that before you click Next, click Read about mail servers because this tutorial is not a complete reference.
  • Click Mail server (POP3, SMTP)
  • Click Next
You will now specify the type of authentication and type the email domain name. In this tutorial we will use Windows Authentication, and I will use my domain name, ilopia.com. You should of course use your domain name.
  • Click Next
Next step is to confirm the options you have selected.
  • Click Next
The installation will start, and will also start the Windows Components Wizard. When you get prompted to insert your Windows Server 2003 CD-ROM into your CD-ROM drive, do so. If you didn't get prompted to do that, you maybe already have it in the drive. Hopefully within some minutes you get this screen:
You can now see the log, click view the next steps for this role, or click Finish. Do whatever you feel you want to do before continuing.
  • Click Finish
You have now successfully installed the mail server, congratulations!

Configure the Email Server

So, it is no fun with a mail server installed, if we can't use it. And to use it, we have to configure it. This section will help you configure the mail server.
  • Click Start, then run, and type p3server.msc
This will open up the POP3 Service. This is where you configure and manage the POP3 part of the mail server.
  • Click on <ComputerName> in the left pane
  • Click on Server Properties in the right pane
This brings up the Properties for our Mail Server.
As you can see, we have a lot of settings. We will use the standard setup in this tutorial, but I will explain every setting we can change in case you want to change something in the future.

Authentication Method

There are three different authentication methods you can use; Local Windows Accounts, Active Directory Integrated and Encrypted Password File. It is an important decision which method to use, because once you have chosen, you must delete all email domains on the server to change method (from now on, you can migrate Encrypted File user accounts to AD, but nothing else can be migrated).
  • Local Windows Accounts
    If your server is stand alone (not member of an Active Directory domain), and you want to have the user accounts on the same local computer as the POP3 service, this is the best option. By using this option, you will use the SAM (Security Accounts Manager) for both the email user accounts, and the user accounts on the local computer. This means that a user can use the same user name and password to be authenticated for both the POP3 service and Windows on the local computer. But there is a limitation, although you can host multiple domains on the server, there must be unique user names for all domains. So, let us say you have two users named Sandra. One working at company1.com and another one working at company2.com. Their user name used will be sandra@company1.com and sandra@company2.com. But in SAM, they will both have the same user name, sandra, so one of them must be renamed to something else (if we don't want them to read each other's emails).

    If you create the user account when you create the mail box (by using the POP3 interface), the user will be added to the POP3 user group. Members of this group are not allowed to logon locally. The fact that the users are added to the POP3 group does not mean that you must be a member of this group to have a mailbox. You should however be careful adding mailboxes to users that are not member of the POP3 group, because the password used for email can for example be sniffed (if you are not using SPA), or someone can brute force the password and gain access to the server.
  • Active Directory Integrated 
    You can select this option if the server is a member of an Active Directory domain or is a Domain Controller. By using this you will integrate the POP3 Service with you AD domain. AD users can use their user name and password to send and receive email. Of course you have to create mailboxes to them first. UnlikeLocal Windows Accounts you can use the same user name on different domains. So sandra@company1.com and sandra@company2.com will have different mailboxes. There is however one thing you should know about, that does not affect the mailbox name and email-name, and the pre-Windows 2000 user name can be changed. Active Directory do not support the same pre-Windows 2000 user name, and this name is usually the same as the user name, which means that if you create a mailbox and user with the same pre-Windows 2000 user name, it will rename the pre-Windows 2000 user name.
  • Encrypted Password File 
    This is the option you want to select if you don't use Active Directory or don't want to create users on the local computer. Like Active Directory Integratedyou can have the same user name on different domains, but you cannot assign the same user name to several mailboxes within the same domain.
    This method works by creating an encrypted file stored in each user's mailbox. This file contains the password for the user. When the user wants to check his/her email, the password that the user supplies is encrypted and compared to the one in the file.
    It is possible to migrate Encrypted File user accounts to AD user accounts.

Server Port

I strongly recommend that you use port 110 because this is the standard port for the POP3 protocol. If you change this, make sure you notify all users so they can configure their email clients to use this other port. Also make sure you restart the POP3 service if you change this.

Logging Level

Four options to choose between. If you change this, remember that you must restart the POP3 service.
  • None 
    Nothing is logged.
  • Low 
    Only critical events are logged.
  • Medium 
    Both critical and warning events are logged.
  • High 
    Critical, warning and informational events are logged.

Root Mail Directory

If you don't want to use the default Mail Directory, you can choose another one. Make sure the path is not more than 260 characters and you can also not store to the root of a partition (i.e. C:). It is strongly recommended that you use a NTFS formatted partition. You can't use a mapped drive, but the UNC name (\\servername\share) can be used. If you later change the store, and there are still emails in one or more boxes, you must manually move the folders in which there are emails to the new location. You must also reset the permissions on the directory by using winpop set mailroot.

SPA

Enable SPA if you want to have a secure communication between your email sever and email clients. This will send both the user name and password encrypted from the client to the server, instead of sending it in clear text. SPA supports only Local Windows Accounts and Active Directory Integrated Authentication. It is recommended to use this. Remember to restart the POP3 service if you change this.

Create a mailbox

The Setup Wizard created a domain to us, so we do not need to create this manually. If you did not use Manage Your Server to install, add the domain manually be clicking the server name in the left pane and then click New domain in the right pane. Remember to set the properties before you add the domain.
  • Click on your domain (ilopia.com in my case) in the left pane.
  • Click Add Mailbox in the right pane.
This will open up the Add Mailbox window.
  • Write bob in Mailbox Name
  • Write bob as password (of course this is not a password you should use in a production environment, it's too short)
  • Click OK
A message will pop-up and tell you how to configure the email clients. Read this, and notice the difference when using SPA or not.
  • Click OK
What we just did was not only creating a mailbox named bob, but we also created a user bob. We will also create a mailbox for an existing user - ariel. To do that we simply perform the same steps, but we uncheck Create associated user for this mailbox. Remember that the mailbox name must be less then 21 characters (64 for Encrypted Password File and Active Directory). Periods are allowed to use, but not as the first or last character.
So, we have now two users. Are they equally? No, bob is a member of the POP3 Users group, which is denied to logon locally. Ariel is not member of this group, and can still logon locally and access her mailbox.

Configure the SMTP Server

Actually, that's it! It is this simple to configure the POP3 part. But it is not yet working as we want, we have to configure the SMTP part to be able to receive and send emails. Yes, I said receive emails. A common mistake is to think that the POP3 server receives the emails. But that is not true, all the POP3 is doing is 'pop' the emails out to the clients. It's the SMTP server that is communicating with other SMTP servers and receives and sends emails.
  • Open Computer Management
  • Expand Services and Applications, expand Internet Information Service
  • Right click Default SMTP Virtual Server and click Properties
  • Click the Access tab
  • Click the Authentication button and make sure Anonymous Access and Integrated Windows Authentication is enabled.
  • Click the Relay button and make sure Allow all computers which successfully... is enabled and Only the list below is selected.
First of all, Authentication and Relay is not the same thing. We use the Authentication button to specify which authentications methods are allowed for users and other SMTP servers. So enabling Anonymous here is not a security issue, in fact, it's required if we want our server to be able to receive emails from other servers on Internet (I doubt you want to tell all administrators of email servers on Internet how they should logon to yours). We also need Windows Authentication so the email clients can authenticate to the server and be able to relay (send emails).
As Relay Restrictions we selected Only the list below because we do not want to be used by spammers to send emails. But we never specified any computers. That is valid, because we wants our clients to always use the username and password to authenticate, no matter where they are.
If you want users to only be allowed to relay if they are on a private network, then you can uncheck Windows Authentication as allowed authentication method, and specify the IP range for your network in the Relay Restrictions window.
Is that all? Do we have a working email server now? Well, the answer is yes. But we still haven't configured the email clients.

Configure the email client

We will use Outlook Express as email client.
  • Start Outlook Express (any computer that is connected to the email server)
  • Click Tools and then Accounts
  • Click the Add button and select Mail
A wizard starts. Use the following table to complete the wizard:
Display nameBob
E-mail addressbob@<your domain> (bob@ilopia.com)
Incoming mail server is aPOP3
Incoming mail server<your domain> (ilopia.com)
Outgoing mail server<your domain> (ilopia.com)
Account namebob@<your domain> (bob@ilopia.com)
Passwordbob
Remember PasswordChecked
SPAUnchecked
Are we finished now? Well, let us try to send an email. Didn't work, did it? I'm sure you got an error message similar to this one:
The message could not be sent because one of the recipients was rejected by the server. The rejected e-mail address was 'webmaster@ilopia.com'. Subject 'Test', Account: 'ilopia.com', Server: 'ilopia.com', Protocol: SMTP, Server Response: '550 5.7.1 Unable to relay for webmaster@ilopia.com', Port: 25, Secure(SSL): No, Server Error: 550, Error Number: 0x800CCC79
The reason why we got this is written in the error message. 'Unable to relay for <email address>'. This means that we didn't get authenticated to the SMTP server. So, let us take a look at the email client's settings again.
  • Click Tools, then Accounts.
This will bring up this window:
  • Click the correct account and then the Properties button
  • Click the Servers tab
  • In the Outgoing Mail Server section enable My server requires authentication.
  • Click Apply, click OK, click Close
  • Create a new email, and send it
And hopefully you will receive an email within some minutes (if you sent it to your own email account).

Enable SPA

Of course we want our network as secure as possible, so we prefer to use SPA (Secure Password Authentication). This will, as stated before, send the user name and password from the client encrypted, instead of clear text.
  • Click Start, then Run
  • Type p3server.msc
  • In the right pane, right click your computer's name and click Properties
  • Check the box Require Secure Password Authentication...
  • Click OK
  • You will be prompted to restart the Microsoft POP3 Service, click Yes
We must also change some settings for the email clients.
  • Start Outlook Express
  • Click Tools, click Accounts
  • Click the Mail tab, click the name of your email account, click Properties
  • Click the Servers tab, and click Log on using Secure Password Authentication
  • Change the account name from bob@<your domain> to bob
  • Click Apply, click OK

More help

If you need more help, or are curious about things, take a look at the help files in Windows Server 2003. They are excellent and you will find out that there are more features that I have not talked about.

Links

Advanced Mail Server Configurations
http://www.microsoft.com/windowsserver2003/techinfo/overview/advmail.mspx

Comparing the POP3 Service and Configuring Coexistence with Exchange
http://www.microsoft.com/downloads/details.aspx?FamilyID=46e9cdd0-95f0-4db6-a4d2-874f4abb09e5&displaylang=en

Setting up 'Catch-all' e-mail account in Windows Server 2003
http://isorecorder.alexfeinman.com/catchall.htm

FAQ

Additional questions and answers can be found here:
http://www.ilopia.com/FAQ/

Q. I have configured the email server and I can send emails without problems. But all emails the server receives ends up in the Drop folder and are not moved to the proper mailbox. What is wrong?

This can happen if you have moved the mail root recently and forgot to cycle the server. To cycle it, open the Services snap-in and find Simple Mail Transfer Protocol (SMTP) in the list. This problem can also occur if you created the SMTP account manually through the IIS snap in. What you have to do in this case is to delete the domain from SMTP and then re-add it using the POP3 tools.

Q. Does the built-in email server support Internet Access Message Protocol (IMAP)?

No, the built-in email server does not support IMAP. If you want or need IMAP support you'll have to look at Exchange 2003, Exchange 2000 running on a Windows 2000 Server machine in a Windows Server 2003 domain, or use a third party email server.

Q. I want the users to be able to read and write email from Internet. Does the built-in email server offer a web interface?

No, the built-in email server is very limited and is only a basic email server. So this feature is not included in it.

Q. I cannot find the SMTP Snap-In in IIS Manager. How do I get it back?

This is a known issue, and should be fixed in Service Pack 1 for Windows Server 2003. To fix it, follow these steps:
  • Click Start, then Run and type cmd and press ENTER.
  • Type regsvr32 %systemroot%\system32\inetsrv\smtpsnap.dll
Uninstall and re-install the SMTP Service will not fix this.

Q. Where are the POP3 logfiles?

The POP3 Service logs to the Event Logs, which can be viewed by using Event Viewer.

Applies to [?]

Windows Server 2003

বাংলাদেশি হ্যাকারদের আক্রমনে বার্মিজ সাইবার স্পেস বিধ্বস্ত


বাংলাদেশী ওয়েবসাইট দখল করতে এসে নিজেরাই বেকায়দায় পড়েছে বার্মিজ হ্যাকাররা।
এন্টি রোহিঙ্গা নাম দিয়ে নিজেদের ফেসবুক ফ্যান পেজে প্রচারিত তথ্যে বার্মিজ হ্যাকাররা দাবি করেছে যে বাংলাদেশের সরকারি, রাষ্ট্রীয় ও শিক্ষাপ্রতিষ্ঠানের ওয়েবসাইটের নিয়ন্ত্রণ নিচ্ছে তারা আর এতে ভারতীয় হ্যাকাররা তাদের সহযোগিতা করছে। ‘বাংলাদেশ সরকার তথাকথিত রোহিঙ্গা নামের সন্ত্রাসীদের গ্রহণ করে বাংলাদেশে ফিরিয়ে না নেয়া পর্যন্ত’ এ হ্যাকিং অভিযান চলবে বলে ঘোষণা করেছে তাদের ফ্যান পেইজে কিন্তু প্রথমেই তাদের ফেসবুক ফ্যান পেইজ হ্যাক করে ফেলে বাংলাদেশী হ্যাকাররা।
বার্মিজ হ্যাকার ইউনিটি নামে এ গোষ্ঠিটির ফেসবুক ফ্যানপেজে দেয়া লিংক অনুসরণ করে দেখা যায় শুক্রবার থেকে এ পর্যন্ত বার্ড ফাউন্ডেশন ও বোয়েসেল-এর মত প্রতিষ্ঠান সহ প্রায় ১৩টি বাংলাদেশ ভিত্তিক শিক্ষা প্রতিষ্ঠান ও বাণিজ্যিক ওয়েবসাইট হ্যাক করেছে এবং সেখানে মিয়ানমারের আরাকান প্রদেশের জাতিগত রোহিঙ্গা সংখ্যালঘুদের বিরুদ্ধে নানা বর্ণবাদী আক্রমণমূলক কথা লেখা হয়েছে। তারা বাংলাদেশর গুরুত্বপূর্ণ ওয়েবসাইট তেমন একটা হ্যাক করতে পারেনি।শুধু বিডিনিউজ২৪.কম কিছুক্ষনের জন্য বন্ধ রাখতে পেরেছে তারা। এদিকে সাইবার যুদ্ধে নিরব থাকেনি বাংলাদেশী তরুন হ্যাকাররা। বাংলাদেশ ব্ল্যাক হ্যাট হ্যাকারস্ ও বাংলাদেশ সাইবার আর্মির উপুর্যুপুরি আক্রমনে মায়ানমারের সাইবার স্পেস কুপোকাত হয়ে পড়ছে।
বিভিন্ন সাইটে ঝুলছে বাংলাদেশের হ্যাকারদের সতর্ক বার্তা। এই সারিতে রয়েছে মায়ানমারের গুরুত্বপূর্ণ সরকারি, কমার্সিয়াল ও পত্রিকার ওয়েবসাইট। হামলা করতে এসে নিজেরাই বেকায়দায় পড়েছে মিয়ানমারের হ্যাকাররা। প্রথমে তারা ফেসবুকে তাদের ফ্যানপেজ হারায় বাংলাদেশের হ্যাকারদের কাছে। তারপর মায়ানমার সেন্ট্রাল ব্যাংকের ওয়েবসাইট দুইঘন্টার জন্য বন্ধ থাকে। প্রথম বড় আঘাত আনে বাংলাদেশ সাইবার আর্মি। একবারে মায়ানমারের ২০টি সাইটের মৃত্যু তালিকা প্রকাশ করে।
তারপর বাংলাদেশ ব্ল্যাক হ্যাট হ্যাকারস্ কিছুক্ষণ পর পর মায়নমারের গুরুত্বপূর্ণ ওয়েবসাইটের মৃত লিংক প্রকাশ করছে। তবে বাংলাদেশের হ্যাক করা সাইটে দেখা গেছে তারা যুদ্ধের বিরুদ্ধে মত প্রকাশ করে এবং বাংলাদেশের ওয়েবসাইট হ্যাক করা থেকে বিরত থাকার জন্য মায়ানমারের হ্যাকারদের হুঁশিযারি প্রদান করছে।
বাংলাদেশের হ্যাকারদের কাছে মায়ানমারের সম্প্রতি বিধ্বস্ত হওয়া কিছু ওয়েবসাইটরে লিঙ্ক
  • Myanmar Post and Telecommunication http://www.mpt.net.mm/Myanmar Govt.Passport Site
  • http://www.passport.gov.mm/Myanmar Customs Crashed -
  • http://myanmarcustoms.gov.mm,
  • http://www.sddcsm.com

অপারেশন মায়ানমার- সেভ মুসলিম ঘোষণা করল বাংলাদেশ সাইবার আর্মি। সে সাথে হ্যাক হল মায়ানমায়ের অনেক গুরুত্তপুর্ন সাইট। :)


বেশ কিছুদিন ধরে দেখা যাচ্ছে আমাদের দেশের অনেক সাইট মায়ানমার এর হ্যাকারদের দ্বারা আক্রান্ত্র হচ্ছে। এবং তারা -মিশন এ্যন্টি রহিজ্ঞারা-  নাম দিয়ে আমাদের বিরুদ্ধে সাইবার যুদ্ধের ঘোষণা করছে। শুধু যে হ্যাকই করছে তা নয়। মায়ানমার মুসলিম অনেকের উপর অত্যাচার করতেছে তা আপনারা পেপার পত্রিকায় পড়েছেন। এত কিছু হওয়ার পরও চুপ থাকা যায় বলে ক আপনি মনে করেন??

বাংলাদেশ সাইবার আর্মি মায়ানমার এই যুদ্ধের কারনে  একটা মেসেজ দিয়েছে। আমি সেটা সম্পুর্ন কপি করে দিয়ে দিলাম।

Greetings To The People of the World,
We are Bangladesh Cyber Army. Recently, we have been seeing that the hackers of Myanmar are hacking our country's websites.
Not only this, Myanmar is also killing the innocent Muslims of their country. This injustice over the Muslims and attack on the Bangladeshi cyber space has forced us to react. In this situation, we feel the necessity of a cyber war, against racists. We defeated Indians and it's their time now...
Human Rights Commission and other Governments who have the ability to stop all these are sitting idle under this situation. We request them to come forward and stand against injustice.
United as a Single ONE,
Divided by ZERO.
Our work is for our country,
Our fight is for humanity.
We want Justice.
We are,
Bangladesh Cyber Army.

শুধু মেসেজই নয় ইতিমধ্যে বাংলাদেশিদের হাতে বেশ কয়েকটি   সাইট ডিফেস/হ্যাকও হয়ে গেছে। নিচে মিরর সহ দিলাম।
Myanmar Tour And Travel
University of Medicine, Mandalay
Client Focus Technology Group Co.ltd of Myanmar
Myanmar UN Framework Convention on Climate Change
The Royal Hantha Arts of Myanmar Artists
Myanmar Clover Hotel Yangon
MYINT THUKHA NADI CO.
Myanmar Bagan Hotel
____________________
এবং ডাউন করে ফেলা হয়েছে অনেক গুরুত্তপুর্ন সরকারি সাইট
Myanmar Gov Sites Down!!!
www.myanmar.gov.mm
www.myancoop.gov.mm
www.construction.gov.mm
www.csostat.gov.mm
www.myanmarteak.gov.mm
www.moai.gov.mm
যেহেতু অনেকেই বলতে পারেন বাংলাদেশ সাইবার আর্মি শিবির,যামাত, ইত্যাদি। না এটি কোন রাজনীতি বা শিবির জামাত ইত্যাদি থেকে নয়। মানবতার খাতিরে এবং ন্যায়বিচার এর জন্য এ্যাটাক করা হচ্ছে। আশা করি ইন্ডিয়ার সাথে যুদ্ধের সময় আপনারা যেমন সাথে ছিলেন এখনও ঠিক তেমনি সাথেই থাকবেন। এবং ভাল থাকবেন এবং দেশকে ভালবাসবেন। :)

ইন্টারনেট এর স্পীড কম আর কোন চিন্তা না। সফটওয়্যার ছাড়াই…। 300% SPEED


"আসসালামুয়ালাইকুম  রহমতউল্লাহ্‌ হি ওয়াবারাকাতুহ।"
সুরু করসি আজকের হ্যাকিং  ট্রিক্স।
এখন আমি আপনাদের শেখাব কিভাবে ইন্টারনেট এর স্পীড হ্যাক করা যায়। মূলত এটা কন সফটওয়্যার না বলতে পারেন ব্যাসিক হ্যাকিং।
  • আপনি প্রথমে cmd ওপেন করুন।{stat menu/all programs/accessories/command prompt  or open run search cmd}
  • নিচের command টি দিন।
1
ipconfig/all
  •  আপনাদের DNS SERVER লাইন টা খুঁজে বের করতে হবে।
  • উপরে IMAGE  এর মতো DNS SERVER এর IP টা NOTRPAD এ লীখে রাখুন বা মনে রাখুন।
  • এবার নিচের COMMAND টা দিন।
1
ping (ip) -t
যেমনঃ
1
ping 117.28.224.146 -t
  • ব্যাস কাজ শেষ ।আবার দাখুন ইন্টারনেট এর স্পীড বেরে গেসে।
  • এইটা মুতল আপনার dns server থেকে স্পীড হ্যাক করে।
  • দেখবেন ইন্টারনেট এর স্পীড ৩০০% গুন বেড়ে গেসে।
  • ping stop করতে চাইলে ctrl+c.
****যতক্ষণ ইন্টারনেট এ CONNECT থাকবেন এই টা চালূ রাখুন *******
মূলত এইটা আমি use করি এখন স্পীড মুতামুতি ভালই.........
********BYE********
"আসসালামুয়ালাইকুমরহমতউল্লাহ্‌ হি ওয়াবারাকাতুহ।"
MRN HACKER.B.B.
ফেসবুক এ আমি। www.facebook.com/musfiqur.nabil
AITA PROTHOME AKHANEI PROKASITO.
ভাই যারা জানতে চান ping কিভাবে কাজ করে তাহলে এইটা ডাউনলোড করেন।
http://www.mediafire.com/?uer2yqqc3alwn99
এইটা যেভাবে কাজকরে।ঃ
Ping (Program on the application layer) ------->
Opens a 'raw' socket to IP Layer ------>
IP layer (Layer 2 on OSI) packages ICMP packet and sends it
Since there is no TCP layer in between, the Ping (program) has to monitor all the incoming ICMP packets and filter only the one's from the destination.
অ্যান্ড
Ping is actually two different ICMP (Internet Control Message Protocol) packets.
To ping a host you first send a ICMP Echo Request Packet, the host will then reply with an ICMP Echo Reply.
For more information see: http://en.wikipedia.org/wiki/Ping

হ্যাকিং এর একটি বাংলা বই। অন্যরকম একটি হ্যাকিং এর বই


আবার ও ফিরে এলাম।
এখন আমি আপনাদের সাথে একটা বাংলা হ্যাকিং বই শেয়ার করব।
বইতি এখান থেকে ডাউনলোড করে নিন।
http://www.mediafire.com/view/?jhx8s295hpjs6wt
বইটি লিখিসেন ঃ কাজী আনোয়ার হোসেন।
বইতির নামঃ  হ্যাকার
এটা মুলত হ্যাকিং নিয়ে একটা গল্প।
আমার কাসে এক ভাই কন বাংলা হ্যাকিং বই চেয়েসিল।
সো, সবাই ভাল থাকুন।আর আমার সাথেই থাকুন।
MRN hacker
www.facebook.comk/musfiqur.nabil  
   ****সবাই comment করবেন******

হ্যাকিং গাইড ওয়েবসাইট। হ্যাকিং,হ্যাকিং,হ্যাকিং,হ্যাকিং,হ্যাকিং।website for learn hacking:


কি হ্যাকিং শিখতে চান।আপ্নার guide দরকার কয়তা হ্যাকিং ওয়েব সাইট প্রয়োজন আমি দিতছি।তবে এগুলো ইংলিশ এ আপনাদের বুঝতে সমসসা হতে পারে।
আমার সাথেই থাকুন আমি আপনাদের কে আরও অনেক হ্যাকিং tunes উপহার দিব।
চলুন সাইট গুলো দেখি নিনঃ
  • Hack This Site!
  • XROXY.COM - More than just proxy
এরকম আরও কয়েটি মূল্যবান ওয়েবসিতেঃ
M.R.N HACKER
www.facebook.com/musfiqur.nabil