Tuesday, March 12, 2013

Summer Industrial Training In Appin Patna


Our Industrial training programs are designed for students who are looking to master their technical skills. Appin gives students to get hands on experience. Appin's project based Summer training program and guidance is the preferred choice ofEngineering Students/ IT Students/MCA Student /Science graduate & Professionals as it gives students to get Hands on Experience, unlike any other training in industries where students/professionals are not allowed working on the real equipment/software during their internships. Our project based training programs are exhaustive and covering the latest and upcoming technologies. Along with project based training, we give students Placement Assistance when they graduate via the Campus Connect Placement Programs.Last year most of all participants were placed in top MNCs. It is attended by selected 4890 engineering & IT students from across the world and it was attended by students from India, China, Nigeria, Australia, and Middle East, UK among other countries and comprised of 3230 male and 160 female students in Hi-technology training areas.
Why Appin?
·  Over half a decade of experience in IT & Security training over seventy cities and hundred plus centers affecting lives of over eighty-three thousand students.
·  Training partnerships with recognized govt and international bodies includingSTQC,TMVIADL among others.
·  Global leaders in Ethical hacking & Information security training program with over fourteen thousand students placed world-wide
·  Economical training programs that fulfills college & school summer training requirements, job placement assistance available after graduation including first preference for over 78 companies fresher job postings.
·  Appin is among top 5 IT training companies in south Asia (The Week magazine) and a venture of alumni & professors from prestigious IITs.
·  Hostel facility available
·  Courses available ranging for 4-6 weeks to 4-6 Months training.
Technologies Available 
Software Designing
Web Site Designing  
Mobile Application Designing
Embedded Robotics
Android Programming 
Microsoft .Net
Java Programming
PHP Programming 
C/C++ Programming
Networking & Communication
GSM Communications

1st Floor, Vijyanan Complex, Beside Tiwari Bechar, Main Road, Kankarbagh Patna 20
Call Us :- 0612 – 6544454, 9031044450/51/52/53
Website:- www.appinpatna.com




Sunday, March 10, 2013

Appin Patna


Our Industrial training programs are designed for students who are looking to master their technical skills. Appin gives students to get hands on experience. Appin's project based Summer training program and guidance is the preferred choice ofEngineering Students/ IT Students/MCA Student /Science graduate & Professionals as it gives students to get Hands on Experience, unlike any other training in industries where students/professionals are not allowed working on the real equipment/software during their internships. Our project based training programs are exhaustive and covering the latest and upcoming technologies. Along with project based training, we give students Placement Assistance when they graduate via the Campus Connect Placement Programs.Last year most of all participants were placed in top MNCs. It is attended by selected 4890 engineering & IT students from across the world and it was attended by students from India, China, Nigeria, Australia, and Middle East, UK among other countries and comprised of 3230 male and 160 female students in Hi-technology training areas.
Why Appin?
·  Over half a decade of experience in IT & Security training over seventy cities and hundred plus centers affecting lives of over eighty-three thousand students.
·  Training partnerships with recognized govt and international bodies includingSTQC,TMVIADL among others.
·  Global leaders in Ethical hacking & Information security training program with over fourteen thousand students placed world-wide
·  Economical training programs that fulfills college & school summer training requirements, job placement assistance available after graduation including first preference for over 78 companies fresher job postings.
·  Appin is among top 5 IT training companies in south Asia (The Week magazine) and a venture of alumni & professors from prestigious IITs.
·  Hostel facility available
·  Courses available ranging for 4-6 weeks to 4-6 Months training.
Technologies Available 
Software Designing
Web Site Designing  
Mobile Application Designing
Embedded Robotics
Android Programming 
Microsoft .Net
Java Programming
PHP Programming 
C/C++ Programming
Networking & Communication
GSM Communications

1st Floor, Vijyanan Complex, Beside Tiwari Bechar, Main Road, Kankarbagh Patna 20
Call Us :- 0612 – 6544454, 9031044450 , 9279444450
Website:- www.appinpatna.com

Monday, July 30, 2012

Application Security With Apache Shiro

 
Are you frustrated when you try to secure your applications? Do you feel existing Java security solutions are difficult to use and only confuse you further? Les Hazlewood is the Apache Shiro PMC Chair and co-founder and CTO of Katasoft, a start-up focusing on application security products and Apache Shiro professional support. Apache Shiro, a Java security framework that provides a simple but powerful approach to application security.
Apache Shiro is a powerful and easy-to-use Java security framework that performs authentication, authorization, cryptography, and session management and can be used to secure any application – from the command line applications, mobile applications to the largest web and enterprise applications. Shiro provides the application security API to perform the following aspects :
  • Authentication – proving user identity, often called user ‘login’.
  • Authorization – access control
  • Cryptography – protecting or hiding data from prying eyes
  • Session Management – per-user time-sensitive state
Shiro also supports some auxiliary features, such as web application security, unit testing, and multithreading support, but these exist to reinforce the above four primary concerns.
The framework landscape has changed quite a bit since 2003, so there should still be a compelling reason to use Shiro today. There are quite a few reasons actually. Apache Shiro is:
  • Easy To Use - Ease of use is the project’s ultimate goal. Application security can be extremely confusing and frustrating and thought of as a ‘necessary evil’. If you make it so easy to use that novice programmers can start using it, it doesn’t have to be painful anymore.
  • Comprehensive – There is no other security framework with the breadth of scope that Apache Shiro claims, so it can likely be your ‘one stop shop’ for your security needs.
  • Flexible – Apache Shiro can work in any application environment. While it works in web, EJB, and IoC environments it does not require them. Nor does Shiro mandate any specification or even have many dependencies.
  • Web Capable – Apache Shiro has fantastic web application support, allowing you to create flexible security policies based on application URLs and web protocols (e.g. REST), while also providing a set of JSP libraries to control page output.
  • Pluggable - Shiro’s clean API and design patterns make it easy to integrate with many other frameworks and applications. You’ll see Shiro integrated seamlessly with frameworks like Spring, Grails, Wicket, Tapestry, Mule, Apache Camel, Vaadin, and many others.
  • Supported - Apache Shiro is part of the Apache Software Foundation, an organization proven to act in the best interest of its community. The project development and user groups have friendly citizens ready to help.

Monday, June 18, 2012

Port Blocking Using By IPTABLES In Linux .



Port numbers which are recognized by Internet and other network protocols, enabling the computer to interact with others. Each Linux server has a port number (see /etc/services file). For example:

  1. TCP port 80 - HTTP Server
  2. TCP port 443 - HTTPS Server
  3. TCP port 25 - Mail Server
  4. TCP port 22 - OpenSSH (remote) secure shell server
  5. TCP port 110 - POP3 (Post Office Protocol v3) server
  6. TCP port 143 - Internet Message Access Protocol (IMAP) — management of email messages
  7. TCP / UDP port 53 - Domain Name System (DNS)

Block Incoming Port

The syntax is as follows to block incoming port using IPtables: /sbin/iptables -A INPUT -p tcp --destination-port {PORT-NUMBER-HERE} -j DROP

### interface section use eth1 ###
/sbin/iptables -A INPUT -i eth1 -p tcp --destination-port {PORT-NUMBER-HERE} -j DROP

### only drop port for given IP or Subnet ##
/sbin/iptables -A INPUT -i eth0 -p tcp --destination-port {PORT-NUMBER-HERE} -s {IP-ADDRESS-HERE} -j DROP
/sbin/iptables -A INPUT -i eth0 -p tcp --destination-port {PORT-NUMBER-HERE} -s {IP/SUBNET-HERE} -j DROP
To block port 80 (HTTP server), enter (or add to your iptables shell script)

# /sbin/iptables -A INPUT -p tcp --destination-port 80 -j DROP
# /sbin/service iptables save

Block Incomming Port 80 except for IP Address 1.2.3.4

# /sbin/iptables -A INPUT -p tcp -i eth1 -s ! 1.2.3.4 --dport 80 -j DROP

Block Outgoing Port

The syntax is as follows:
 
/sbin/iptables -A OUTPUT -p tcp --dport {PORT-NUMBER-HERE} -j DROP
 
### interface section use eth1 ###
 
/sbin/iptables -A OUTPUT -i eth1 -p tcp --dport {PORT-NUMBER-HERE} -j DROP
 
### only drop port for given IP or Subnet ##
 
/sbin/iptables -A OUTPUT -i eth0 -p tcp --destination-port {PORT-NUMBER-HERE} -s {IP-ADDRESS-HERE} -j DROP
/sbin/iptables -A OUTPUT -i eth0 -p tcp --destination-port {PORT-NUMBER-HERE} -s {IP/SUBNET-HERE} -j DROP
 
To block outgoing port # 25, enter:

# /sbin/iptables -A OUTPUT -p tcp --dport 25 -j DROP
# /sbin/service iptables save

You can block port # 1234 for IP address 192.168.1.2 only:
# /sbin/iptables -A OUTPUT -p tcp -d 192.168.1.2 --dport 1234 -j DROP
# /sbin/service iptables save

Friday, May 11, 2012

Taskmanager Implemented In Excel/VBA

If You Are in a restricted environment where You could not use Task Manager or Process Explorer. It will also come in handy when fixing an infected machine, where the malware prevents one from launching Task Manager or Process Explorer.
Push  button “List processes” to list all processes:


Here’s how you would use it to disable malware. List processes, identify malicious processes, type command s (suspend) in column Command for the malicious processes you want to disable. Push button “Execute commands”, this will suspend the selected processes.


Now terminate them with the t command:


Doing this in 2 steps (suspend and terminate) in stead of just terminating, is more suited for multi-process malware that monitors itself.
Download:
TaskManager_V0_0_1.zip (https)

Saturday, April 21, 2012

Login Spoofer-Gmail,yahoo,facebook,hotmail password hacking

Download Login Spoofer-Gmail,yahoo,facebook,hotmail password hacking.

Login Spoofer is a Software that it can create Professional Phishing Pages Like: (Hotmail, Yahoo, Gmail, GameZer, Facebook and many more ....) to Steal somebody's Account you have to push him to login in one of your fake pages, when the Victim Login as you told him, His account (Username/Password) will register in our database So you go to the software (Login spoofer) and press refresh then you'll find His Username & Password & IP & his OS Info...etc. Using and Downloading is free 100%.Yahoo Password Hacking: Hack Yahoo Account Password with phishing attack.


DOWNLOAD HERE

Image Hack: How to hack Images on friend’s computer

Image Hack: How to hack Images on friend’s computer

Image hack has been the missing part of this blog. So, I am posting Image Worm software developed by Nathan which you can use to hack images on remote computer.
1. Download Image Worm software to hack images on friend’s computer.
Password: techotoys.net
2. Run the Image Worm software to see:
3. Now, select any image on your computer. This image will be used to replace all the images on victim computer i.e. all the images on your friend’s computer will be changed to your selected image.
4. After selecting the image, hit on “Build Worm” and Image worm will create a server.exe file in current directory.
Note: Do not run this server.exe file on your own computer. I don’t know how to nullify the changes done by this image hack. If you want to try out on your computer, make sure you use Deep Freeze 6 software before running server.exe file.
5. Now, bind the server.exe file with any other .exe file using FUD binder software. Send this binded file to your friend and ask him to run it on his computer. After running, our server.exe file will silently install itself on victim computer and all his images will be changed to your image selected in Step 3.
6.a. Images before Image hack:
 6.b Images after Image hack:
Thus, now you can see this image hacking software changes all images on victim computer. You are able to hack images on your friend’s computer thanks to Image Worm software.
Note: The server.exe file may take some time to hack images on remote computer. Also, on some computers, Image Worm is able to hack images present in “Pictures” folder. So, the working of Image worm to hack images varies according to computer.

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | cheap international voip calls