Sunday, February 16, 2014

bb in Kali Linux


Bb is a high quality audio-visual demonstration for your text terminal.

1. How to Install bb – Open terminal, type apt-get install bb and Press Enter.
(Click image for large view)

2. Open bb with Help Commands
Syntax - /usr/games/bb -h

3. This command is used to start bb. After running the command choose ‘y’ if you want music. Turn ON your Speakers.
Syntax - /usr/games/bb

 

3A. If you logged in as an user (not root) then command syntax will be change.
Syntax : hell@MrQuiety:/root$ bb

4. If you want to change anything then just Press the given number according to their description. After that Press 8 for continue.

5. Watch and Enjoy….
(Click image for large view)



Like it ? Share it.

Thursday, February 13, 2014

Web Application Exploits


Web Evolution
  • Static content:-  Server serves web pages created by people.
  • Dynamic content via server-side code:- Server generates web pages based on input from user and a database using code executed on server.
    Ex - CGI scripts (Perl, Python, PHP, Ruby, Java, ASP, etc.)
  • Dynamic content via client-side code:- Code embedded in web page is executed in browser and can manipulate web page as a data structure (Domain Object Model = DOM)
    Ex. - JavaScript, VBScript, Active X controls, Java applets
  • AJAX (Asynchronous JavaScript and XML):- Framework for updating page by communicating between browser and remote servers.

Attack Surface

Web applications have a large attack surface  places that might contain vulnerabilities that can be exploited. A vault with a single guarded door is easier to secure than a building with many doors and windows.
  • Client side surface:- form inputs (including hiddenfields), cookies, headers, query parameters, uploaded files, mobile code
  • Server attack surface: web service methods, databases
  • AJAX attack surface: union of the above

These were divided into six categories:
Broken Authentication (62%) - This vulnerability relates to the application’s login mechanism, which may enable the attacker to guess username and passwords and thus launch a brute-force attack.

Broken Access Controls (71%) - The application fails to properly protect access to sensitive information. An attacker can be able to view other user’s personal information.

SQL Injection (32%) - This allows the attacker to submit arbitrary input to the application and interfere with the application’s back-end database. An attacker may be able to modify or retrieve data from the application or execute commands on the database.

Cross-site Scripting (94%) - This vulnerability enables the attacker to input malicious javascript to the application and potentially gain access to their data, or carrying other attacks against them.

Information Leakage (78%) - In this case the application exposes sensitive data or information that might be useful for the attacker when targeting the application.

Cross-site Request Forgery (92%) - This allows the attacker to create malicious and unintended actions in the application with other user’s behalf.

The OWASP Top 10 - 2013 Release Candidate includes the following changes as compared to the 2010 edition:
  • A1 Injection
  • A2 Broken Authentication and Session Management (was formerly A3)
  • A3 Cross-Site Scripting (XSS) (was formerly A2)
  • A4 Insecure Direct Object References
  • A5 Security Misconfiguration (was formerly A6)
  • A6 Sensitive Data Exposure (merged from former A7 Insecure Cryptographic Storage and former A9 Insufficient Transport Layer Protection)
  • A7 Missing Function Level Access Control (renamed/broadened from former A8 Failure to Restrict URL Access)
  • A8 Cross-Site Request Forgery (CSRF) (was formerly A5)
  • A9 Using Known Vulnerable Components (new but was part of former A6 – Security Misconfiguration)
  • A10 Unvalidated Redirects and Forwards

Like it ? Share it.

Wednesday, February 12, 2014

oneko in Kali Linux


Oneko changes your mouse cursor into mouse and creates a little cute cat and the cat start chasing around your mouse cursor. If the cat catchup the “mouse”, start sleeping.


1. How to install – Open Terminal, type apt-get install oneko and Press Enter
(Click on image for large view)

2. Open oneko with help commands
Syntax - /usr/games/oneko -help


3. Neko – neko use neko bitmaps.
Syntax - /usr/games/oneko
          or /usr/games/oneko -neko

4. Dog use dog bitmaps
Syntax - /usr/games/oneko –dog

5. Sakura use sakura bitmaps.
Syntax - /usr/games/oneko -sakura

6. Tomoyo use tomoyo bitmaps.
Syntax - /usr/games/oneko -tomoyo
(Click on image for large view)



Like it ? Share it.

How to Delete Gmail Account



Sometime we need to delete Gmail account and every person has their own reason behind this decision. We want to also tell your think once again about deleting your gmail. After deleting gmail account you will lose your all access, data and email etc. So, This is really a big decision. Now come to the point “How to Delete Gmail Account”

1. Write you Gmail ID which you want to delete as well write your Gmail ID's Password and Click on Sign In.
(Click Image for large view)

2. If you have slow Internet connection and you want to access your gmail account faster then Click on Basic HTML. Sure It will not give you new look of gmail but its very handy for slow net connection users.

3. As you will see you have successfully logged In. Now Click on Account.

4. If required it may ask you to write our password again for security reason. If it ask then write your password and click on Sign In. In my case it didn't ask and it simply switch to my personal info Tab. In this Tab Click on Data Tools.

5. Click on Delete account and data 

6. Read the paragraph carefully and check the boxes which things you want to delete again check box for confirmation and finally click on DELETE GOOGLE ACCOUNT

7. Soon you will get a successful message in your screen.
(Click Image for large view)
Like it ? Share it.

Monday, February 10, 2014

Buffer overflows


In computer security and programming, a buffer overflow, or buffer overrun, is an anomaly where a program, while writing data to a buffer, overruns the buffer's boundary and overwrites adjacent memory. This is a special case of violation of memory safety.
Buffer overflows can be triggered by inputs that are designed to execute code, or alter the way the program operates. This may result in erratic program behavior, including memory access errors, incorrect results, a crash, or a breach of system security. Thus, they are the basis of many software vulnerabilities and can be maliciously exploited.
Programming languages commonly associated with buffer overflows include C and C++, which provide no built-in protection against accessing or overwriting data in any part of memory and do not automatically check that data written to an array (the built-in buffer type) is within the boundaries of that array. Bounds checking can prevent buffer overflows.


A buffer overflow occurs when data written to a buffer, due to insufficient bounds checking, corrupts data values in memory addresses adjacent to the allocated buffer. Most commonly this occurs when copying strings of characters from one buffer to another.

Exploitation

The techniques to exploit a buffer overflow vulnerability vary per architecture, operating system and memory region. For example, exploitation on the heap (used for dynamically allocated memory), is very different from exploitation on the call stack.

Stack-based Exploitation
A technically inclined user may exploit stack-based buffer overflows to manipulate the program to their advantage in one of several ways:
  • By overwriting a local variable that is near the buffer in memory on the stack to change the behavior of the program which may benefit the attacker.
  • By overwriting the return address in a stack frame. Once the function returns, execution will resume at the return address as specified by the attacker, usually a user input filled buffer.
  • By overwriting a function pointer,[ or exception handler, which is subsequently executed.
With a method called "trampolining", if the address of the user-supplied data is unknown, but the location is stored in a register, then the return address can be overwritten with the address of an opcode which will cause execution to jump to the user supplied data. If the location is stored in a register R, then a jump to the location containing the opcode for a jump R, call R or similar instruction, will cause execution of user supplied data.
The locations of suitable opcodes, or bytes in memory, can be found in DLLs or the executable itself. However the address of the opcode typically cannot contain any null characters and the locations of these opcodes can vary between applications and versions of the operating system. The Metasploit Project is one such database of suitable opcodes, though only those found in the Windows operating system are listed.
Stack-based buffer overflows are not to be confused with stack overflows. Also note that these vulnerabilities are usually discovered through the use of a fuzzer.

Heap-based Exploitation
A buffer overflow occurring in the heap data area is referred to as a heap overflow and is exploitable in a different manner to that of stack-based overflows. Memory on the heap is dynamically allocated by the application at run-time and typically contains program data.
Exploitation is performed by corrupting this data in specific ways to cause the application to overwrite internal structures such as linked list pointers. The canonical heap overflow technique overwrites dynamic memory allocation linkage (such as malloc meta data) and uses the resulting pointer exchange to overwrite a program function pointer.
Microsoft's GDI+ vulnerability in handling JPEGs is an example of the danger a heap overflow can present.

Barriers to Exploitation
Manipulation of the buffer, which occurs before it is read or executed, may lead to the failure of an exploitation attempt. These manipulations can mitigate the threat of exploitation, but may not make it impossible.
Manipulations could include conversion to upper or lower case, removal of metacharacters and filtering out of non-alphanumeric strings. However, techniques exist to bypass these filters and manipulations; alphanumeric code, polymorphic code, self-modifying code and return-to-libc attacks. The same methods can be used to avoid detection by intrusion detection systems. In some cases, including where code is converted into unicode, the threat of the vulnerability have been misrepresented by the disclosers as only Denial of Service when in fact the remote execution of arbitrary code is possible.

Practicalities of Exploitation
In real-world exploits there are a variety of challenges which need to be overcome for exploits to operate reliably. These factors include null bytes in addresses, variability in the location of shellcode, differences between environments and various counter-measures in operation.

NOP Sled Technique
A NOP-sled is the oldest and most widely known technique for successfully exploiting a stack buffer overflow. It solves the problem of finding the exact address of the buffer by effectively increasing the size of the target area.
To do this much larger sections of the stack are corrupted with the no-op machine instruction. At the end of the attacker-supplied data, after the no-op instructions, an instruction to perform a relative jump to the top of the buffer where the shellcode is located. This collection of no-ops is referred to as the "NOP-sled" because if the return address is overwritten with any address within the no-op region of the buffer it will "slide" down the no-ops until it is redirected to the actual malicious code by the jump at the end.
This technique requires the attacker to guess where on the stack the NOP-sled is instead of the comparatively small shellcode.
Because of the popularity of this technique, many vendors of intrusion prevention systems will search for this pattern of no-op machine instructions in an attempt to detect shellcode in use. It is important to note that a NOP-sled does not necessarily contain only traditional no-op machine instructions; any instruction that does not corrupt the machine state to a point where the shellcode will not run can be used in place of the hardware assisted no-op.
As a result it has become common practice for exploit writers to compose the no-op sled with randomly chosen instructions which will have no real effect on the shellcode execution.

Preventing Overflows Vulnerabilities

Various techniques have been used to detect or prevent buffer overflows, with various tradeoffs. The most reliable way to avoid or prevent buffer overflows is to use automatic protection at the language level. This sort of protection, however, cannot be applied to legacy code, and often technical, business, or cultural constraints call for a vulnerable language. The following sections describe the choices and implementations available.

Choice of programming language
The choice of programming language can have a profound effect on the occurrence of buffer overflows. As of 2008, among the most popular languages are C and its derivative, C++, with a vast body of software having been written in these languages. C and C++ provide no built-in protection against accessing or overwriting data in any part of memory; more specifically, they do not check that data written to a buffer is within the boundaries of that buffer. However, the standard C++ libraries provide many ways of safely buffering data, and techniques to avoid buffer overflows also exist for C.
Many other programming languages provide runtime checking and in some cases even compile-time checking which might send a warning or raise an exception when C or C++ would overwrite data and continue to execute further instructions until erroneous results are obtained which might or might not cause the program to crash. Examples of such languages include Ada, Eiffel, Lisp, Modula-2, Smalltalk, OCaml and such C-derivatives as Cyclone and D. The Java and .NET Framework bytecode environments also require bounds checking on all arrays. Nearly every interpreted language will protect against buffer overflows, signalling a well-defined error condition.
Often where a language provides enough type information to do bounds checking an option is provided to enable or disable it. Static code analysis can remove many dynamic bound and type checks, but poor implementations and awkward cases can significantly decrease performance. Software engineers must carefully consider the tradeoffs of safety versus performance costs when deciding which language and compiler setting to use.

Use of safe libraries
The problem of buffer overflows is common in the C and C++ languages because they expose low level representational details of buffers as containers for data types. Buffer overflows must thus be avoided by maintaining a high degree of correctness in code which performs buffer management. It has also long been recommended to avoid standard library functions which are not bounds checked, such as gets, scanf and strcpy.
The Morris worm exploited a gets call in fingerd. Well-written and tested abstract data type libraries which centralize and automatically perform buffer management, including bounds checking, can reduce the occurrence and impact of buffer overflows.
The two main building-block data types in these languages in which buffer overflows commonly occur are strings and arrays; thus, libraries preventing buffer overflows in these data types can provide the vast majority of the necessary coverage. Still, failure to use these safe libraries correctly can result in buffer overflows and other vulnerabilities; and naturally, any bug in the library itself is a potential vulnerability. "Safe" library implementations include "The Better String Library", Vstr  and Erwin. The OpenBSD operating system's C library provides the strlcpy and strlcat functions, but these are more limited than full safe library implementations.

Buffer overflow protection
Buffer overflow protection is used to detect the most common buffer overflows by checking that the stack has not been altered when a function returns. If it has been altered, the program exits with a segmentation fault. Three such systems are Libsafe,  and the StackGuard and ProPolice gcc patches.
Microsoft's Data Execution Prevention mode explicitly protects the pointer to the SEH Exception Handler from being overwritten.
Stronger stack protection is possible by splitting the stack in two: one for data and one for function returns. This split is present in the Forth language, though it was not a security-based design decision. Regardless, this is not a complete solution to buffer overflows, as sensitive data other than the return address may still be overwritten.

Pointer protection
Buffer overflows work by manipulating pointers (including stored addresses). PointGuard was proposed as a compiler-extension to prevent attackers from being able to reliably manipulate pointers and addresses.
The approach works by having the compiler add code to automatically XOR-encode pointers before and after they are used. Because the attacker (theoretically) does not know what value will be used to encode/decode the pointer, he cannot predict what it will point to if he overwrites it with a new value. PointGuard was never released, but Microsoft implemented a similar approach beginning in Windows XP SP2 and Windows Server 2003 SP1.
Rather than implement pointer protection as an automatic feature, Microsoft added an API routine that can be called at the discretion of the programmer. This allows for better performance (because it is not used all of the time), but places the burden on the programmer to know when it is necessary.
Because XOR is linear, an attacker may be able to manipulate an encoded pointer by overwriting only the lower bytes of an address. This can allow an attack to succeed if the attacker is able to attempt the exploit multiple times and/or is able to complete an attack by causing a pointer to point to one of several locations (such as any location within a NOP sled). Microsoft added a random rotation to their encoding scheme to address this weakness to partial overwrites.

Executable space protection
Executable space protection is an approach to buffer overflow protection which prevents execution of code on the stack or the heap. An attacker may use buffer overflows to insert arbitrary code into the memory of a program, but with executable space protection, any attempt to execute that code will cause an exception.
Some CPUs support a feature called NX ("No eXecute") or XD ("eXecute Disabled") bit, which in conjunction with software, can be used to mark pages of data (such as those containing the stack and the heap) as readable and writeable but not executable. Some Unix operating systems (e.g. OpenBSD, Mac OS X) ship with executable space protection (e.g. W^X). Some optional packages include:
  • PaX
  • Exec Shield
  • Openwall
Newer variants of Microsoft Windows also support executable space protection, called Data Execution Prevention.  Proprietary add-ons include:
  • BufferShield
  • StackDefender
Executable space protection does not generally protect against return-to-libc attacks, or any other attack which does not rely on the execution of the attackers code. However, on 64-bit systems using ASLR, as described below, executable space protection makes it far more difficult to execute such attacks.
Address space layout randomization
Address space layout randomization (ASLR) is a computer security feature which involves arranging the positions of key data areas, usually including the base of the executable and position of libraries, heap, and stack, randomly in a process' address space.
Randomization of the virtual memory addresses at which functions and variables can be found can make exploitation of a buffer overflow more difficult, but not impossible. It also forces the attacker to tailor the exploitation attempt to the individual system, which foils the attempts of internet worms. A similar but less effective method is to rebase processes and libraries in the virtual address space.

Deep packet inspection
The use of deep packet inspection (DPI) can detect, at the network perimeter, very basic remote attempts to exploit buffer overflows by use of attack signatures and heuristics. These are able to block packets which have the signature of a known attack, or if a long series of No-Operation instructions (known as a nop-sled) is detected, these were once used when the location of the exploit's payload is slightly variable.
Packet scanning is not an effective method since it can only prevent known attacks and there are many ways that a 'nop-sled' can be encoded. Shellcode used by attackers can be made alphanumeric, metamorphic, or self-modifying to evade detection by heuristic packet scanners and intrusion detection systems.

Like it ? Share it.

CISCO Systems Security Certification


The industry leader in networking, unified communications & collaboration - and an innovator in data center technology, network infrastructure, and other key emerging technologies.
Cisco launches its first global re-branding campaign for the first time in six years with its "TOMORROW starts here" and "Internet of Everything" advertising campaigns. These efforts were designed to position Cisco for the next ten years into a global leader in connecting the previously unconnected and facilitate the IP address connectivity of people, data, processes and things through cloud computing applications and services.


In March 2013, Cisco announced its interest in Myanmar by investing in two Cisco Networking Academies in Yangon and Mandalay and a channel partner network in the country.

A Cisco base in Chennai, India.India is one of the company's largest overseas markets and production centers.

Cisco's current portfolio of products and services is focused upon three market segments – Enterprise and Service Provider, Small Business and the Home. The solutions for each market are segmented into Architectures, which form the basis for how Cisco approaches each market.

Cisco Security Certifications
Cisco Systems also sponsors a line of IT Professional certifications for Cisco products. There are five levels of certification: Entry (CCENT), Associate (CCNA / CCDA), Professional (CCNP / CCDP), Expert (CCIE / CCDE), and recently Architect, as well as eight different paths, Routing & Switching, Design, Network Security, Service Provider, Service Provider Operations, Storage Networking, Voice, and Wireless.
A number of specialist technician, sales and datacenter certifications are also available. Cisco also provides training for these certifications via a portal called the Cisco Networking Academy. Qualifying schools can become members of the Cisco Networking Academy and then provide CCNA level or other level courses. Cisco Academy Instructors must be CCNA certified to be a CCAI certified instructor.

CCNA Security

CCNA Security validates knowledge of security infrastructure, threats, and vulnerabilities to networks and threat mitigation. Required skills include installation, troubleshooting and monitoring of network devices to maintain the integrity, confidentiality, and availability of data and devices. This certification is earned by passing the IINS 640-553 (Implementing Cisco IOS Network Security, or IINS) exam. The last day to enroll in the IINS 640-553 exam was September 30th, 2012, and has since been replaced by the IINS 640-554 exam (IINS v2.0), which is now the required exam to earn the certification and for continuing the security certification path to the CCNP.

CCNP Security

The CCNP Security certification program is aligned to the job role of the Cisco Network Security Engineer, responsible for security in routers, switches, networking devices, and appliances, as well as choosing, deploying, supporting, and troubleshooting firewalls, VPNS, and IDS/IPS solutions for their networking environments. The CCNP Security certification requires CCNA Security or any CCIE Certification.

CCNP Security exams and recommended training
642-637 SECURE v1.0 Secure v1.0 Securing Networks with Cisco Routers and Switches (SECURE v1.0)
642-618 FIREWALL v2.0 Deploying Cisco ASA Firewall Solutions (FIREWALL v2.0)
642-648 VPN v2.0 Deploying Cisco ASA VPN Solutions (VPN v2.0)
642-627 IPS v7.0 Implementing Cisco Intrusion Prevention System v7.0 - (IPS v7.0)

CCIE Security

The Security track covers advanced topics in subjects such as ASA, IDS, IOS security, and many others.

Official Website : Click Here

Like it ? Share it.

Sunday, February 9, 2014

Matrix in Kali Linux


Show a scrolling ‘Matrix’ like screen in Kali Linux

1. How to install – Open Terminal, type apt-get install cmatrix and Press Enter
(Click on image for large view)

2. Open cmatrix with help commands.
Syntax – cmatrix –h

3. This is a simple example of cmatrix. Open Terminal, type cmatrix and Press Enter

As Result we will see letter scrolling matrix.

4. This command will display The Matrix with bold font.
Syntax – cmatrix –B

As Result you will see this.
(Click on image for large view)



Like it ? Share it.

Saturday, February 8, 2014

Interview of Kali Linux


What is Kali Linux - Kali Linux is the new generation of the industry-leading BackTrack Linux penetration testing and security auditing Linux distribution. Kali Linux is a complete re-build of BackTrack from the ground up, adhering completely to Debian development standards. It is maintained and funded by Offensive Security Ltd. It was developed by Mati Aharoni and Devon Kearns of Offensive Security through the rewriting BackTrack, their previous forensics Linux distribution. Users may run Kali Linux from a hard disk, live CD, or live USB. Kali Linux is distributed in 32- and 64-bit images for use on hosts based on the x86 instruction set, as well as an image for the ARM architecture for use on the Raspberry Pi computer and on Samsung's ARM Chromebook. Kali Linux is also known as Backtrack 6.




How to Download Kali Linux ISO
1. Open This link Download Kali Linux
2. After Opening the Official Download Website of Kali Linux you will find out download links. I advice you If you are feeling confuse which one should you choose for downloading, choose Kali Linux 32 Bit ISO. It supports mostly all System. So for starting download click on Kali Linux 1.0.6 32 Bit ISO (Version may update in the future just focus on 32 Bit ISO)

3. So, If you have Internet Download Manager in your system. You will see a pop up like this. If not then as per your browser it will start to download.

4. After finishing your download check your download save path. You will find your Kali Linux 32 Bit ISO there.

How to Make Kali Linux Bootable Pendrive - Visit Our this post Make Kali Linux Bootable Pendrive

What is VMware Workstation ? - VMware Workstation is a hypervisor that runs on x64 computers; it enables users to set up multiple virtual machines (VMs) and use them simultaneously along with the actual machine. Each virtual machine can execute its own operating system, such as Microsoft Windows, Linux or BSD variants. As such, VMware Workstation allows one physical machine to run multiple operating systems simultaneously. Workstation is developed and sold by VMware, Inc., a division of EMC Corporation.
VMware Workstation supports bridging existing host network adapters and share physical disk drives and USB devices with a virtual machine. In addition, it can simulate disk drives. It can mount an existing ISO image file into a virtual optical disc drive so that the virtual machine sees it as a real one. Likewise, virtual hard disk drives are made via .vmdk files.
VMware Workstation can save the state of a virtual machine in one point of time. These saved states, known as a "snapshots", can later be restored, effectively returning the virtual machine to the saved state.
VMware Workstation includes the ability to designate multiple virtual machines as a team which can then be powered on, powered off, suspended or resume as a single object, making it particularly useful for testing client-server environments.

How to Download VMware - Visit official Website of VMware Click Here then use below serial key to make it full version. 
Update: We removed all software and serial keys from this website because of Google T&C meanwhile you can mail us your request we will surly help you regarding this issue.

How to install VMware - VMware installation is not a big deal. just open downloaded vmware setup file and follow the instruction.

Q. - Any Freeware Software like VMware because i am unable to download this ?
Ans - Yes, There are many software like this but VMware has more features then other but as you are unable to download so Here are your alternate option Choose one of them.
How to Install Kali Linux on VMware - Visit Our this Post Install Kali Linux on VMware

How to Install Kali Linux with Windows -  Visit Our this Post Install Kali Linux on Hard Disk 

Additional Information - 
Grub Rescue - Sometime for different reason we can face this problem so visit our How to Fix Grub Rescue error Post for solution 

Q. - I also want to download Kali Linux through Internet Download Manager (IDM). Where I can get it for Free ?
Ans - Download from Geekyshows its Free and Full version for life time. If you notice that download link has broken kindly report me Contact Us. 
Update: We removed all software and serial keys from this website because of Google T&C meanwhile you can mail us your request we will surly help you regarding this issue.


Like it ? Share it.

Friday, February 7, 2014

ISACA Security Certifications


ISACA is an international professional association focused on IT Governance. It is an affiliate member of IFAC. Previously known as the Information Systems Audit and Control Association, ISACA now goes by its acronym only, to reflect the broad range of IT governance professionals it serves.

ISACA Certifications

Certified Information Systems Auditor (CISA)
The CISA certification was established in 1978 for several reasons:
  • Develop and maintain a tool that could be used to evaluate an individual's competency in conducting information system audits.
  • Provide a motivational tool for information systems auditors to maintain their skills, and monitor the success of the maintenance programs.
  • Provide criteria to help aid management in the selection of personnel and development.
The first CISA examination was administered in 1981, and registration numbers have grown each year. As of 2010, over 79,000 candidates worldwide have earned the CISA designation since its inception. It is one of the few certifications formally approved by the US Department of Defense in their Information Assurance Technical category (DoD 8570.01-M). In 2009, SC Magazine named the CISA designation winner of the Best Professional Certification Prog
ram.
In 2011, the CISA examination underwent its most significant update in a decade. The exam was revised from 6 domains to 5. All domains were revised and updated in this process.




Certified Information Security Manager (CISM)
        Certified Information Security Manager (CISM) is a certification for information security managers awarded by ISACA (formerly the Information Systems Audit and Control Association). To gain the certifications, individuals must pass a written examination and have at least five years of information security experience with a minimum three years of information security management work experience in particular fields.

The intent of the certification is to provide a common body of knowledge for information security management. The CISM focuses on information risk management as the basis of information security. It also includes material on broader issues such as how to govern information security as well as on practical issues such as developing and managing an information security program and managing incidents.

The point of view in the certification is that of widely accepted cross-industry best practices, where information security gets its justification from business needs. The implementation includes information security as an autonomous function inside wider corporate governance.

The CISM certifications tends to be sought after by both CISA and CISSP certification communities. ISACA created the CISM to help foster a better fusion between IT auditing and information security perspectives.

In principle, the CISM certification is related in nature to the Information Systems Security Management Professional certification from the International Information Systems Security Certification Consortium.

In 2005, the United States Department of Defense listed CISM, CISA and CISSP as "approved" certifications for its "Information Assurance Workforce Improvement Program".

Certified in the Governance of Enterprise IT (CGEIT)
Certified in Risk and Information Systems Control (CRISC)

Certified in Risk and Information Systems Control (CRISC) is a certification for information technology professionals with experience in managing IT risks, awarded by ISACA. To gain this certification, candidates must pass a written examination and have at least eight years of information technology or business experience, with a minimum of three years work experience in at least three CRISC domains.

The intent of the certification is to provide a common body of knowledge for information technology/systems risk management, and to recognize the knowledge of enterprise and IT risk that a wide range of IT and Business practitioners have acquired, as well as the capability to: design, implement and maintain information system (IS) controls, to mitigate IS/IT risks.

The CRISC requires demonstrated knowledge in five functional areas or ‘domains’ of IT risk management:
  • Risk identification, assessment and evaluation
  • Risk response
  • Risk monitoring
  • Information systems control, design and implementation
  • IS control, monitoring and maintenance
Official Website : Click Here

Like it ? Share it.

Wednesday, February 5, 2014

COMPTIA SECURITY CERTIFICATIONS


The Computing Technology Industry Association (CompTIA), a non-profit trade association, was created in 1982 as the Association of Better Computer Dealers, Inc. (ABCD) by representatives of five microcomputer dealerships. Over the course of a decade, ABCD laid the groundwork for many of CompTIA’s initiatives and member benefits.

ABCD later changed its name to the Computing Technology Industry Association to reflect the association's evolving role in the computer industry and in the U.S. business landscape at large.

CompTIA is a provider of professional certifications for the information technology (IT) industry.




Security+
       Security+ is a certification dealing with computer security topics such as cryptography and access control, as well as business-related topics such as disaster recovery and risk management. It was developed in 2002 to address the rise of security issues. A new and updated version, SY0-301, was released in 2011. According to CompTIA, there are currently more than 45,000 people around the world who have earned this certification. It is recommended that candidates have two years of security-related work experience (although not a requirement) and pass the 100 question multiple choice exam.

CompTIA Security+ is an international, vendor-neutral certification that demonstrates competency in:
  • Network security
  • Compliance and operational security
  • Threats and vulnerabilities
  • Application, data and host security
  • Access control and identity management
  • Cryptography
The Security+ exam can be applied as an elective to the MCSA: Security and the MCSE: Security specializations from Microsoft. For United States Department of Defense employees, DoDD 8570, IAT Level II certification guidelines lists Security+ as one of four choices (the others being GIAC Security Essentials Certification (GSEC), Security Certified Network Professional (SCNP), and Systems Security Certified Practitioner (SSCP)).

CompTIA Advanced Security Practitioner [CASP]

CompTIA released the CompTIA Advanced Security Practitioner certification on September 15, 2011. "The CompTIA Advanced Security Practitioner (CASP) Certification is a vendor-neutral credential. The CASP certification is intended to follow CompTIA Security+. The CompTIA Advanced Security Practitioner certification was accredited by the International Organization for Standardization (ISO) and the American National Standards Institute (ANSI) on Dec. 13, 2011. The CASP exam will certify that the successful candidate has the technical knowledge and skills required to conceptualize, design, and engineer secure solutions across complex enterprise environments. The CompTIA Advanced Security Practitioner (CASP) Certification is aimed at an IT security professional who has a minimum of 10 years’ experience in IT administration including at least 5 years of hands-on technical security experience.

Official Website : Click Here

Like it ? Share it.

Tuesday, February 4, 2014

Funny manpages in Kali linux


I am going to show you some funny man pages.

1. How to Install Funny Manpages – Open terminal, type apt-get install funny-manpages and Press Enter.
(Click on image for large view)

2. Now use man command for opening the funny manpages. I am giving you some funny manpages. This could be for 18+ people.
Syntax – man <topic>
Topics:

baby
celibacy
condom
date
echo
flame
flog
gong
grope, egrope, fgrope
party
rescrog
rm
rtfm
tm
uubp
woman (undocumented)
xkill
xlart
sex
strfry

As Result you will see the documentary. Just read this funny documentary and enjoy. 
(Click on image for large view)


Like it ? Share it.

Monday, February 3, 2014

Toilet in Kali linux


Toilet Prints text using large characters made of smaller characters. It is similar in many ways to FIGlet with additional feature such as Unicode handling, color fonts, filters and various export formats.

1. How to install – Open Terminal, type apt-get install toilet and Press Enter
(Click image for large view)



2. Open toilet with Help Commands
    Syntax – toilet –h

3. Toilet with a simple example
    Syntax – toilet Merry Christmas

4. In this example I am going to show you advance toilet feature where you can change your font, filter etc.
Syntax – toilet –f <fontname> -F <filtername> Message
 Ex-    toilet –f letter –F metal Merry Christmas
Here, I am giving you font list as well filter list
Font:
ascii9
ascii12
bigascii9
bigascii12
bigmono9
bigmono12
circle
emboss
emboss2
future
letter
mono9
mono12
pagga
smascii9
smacii12
smblock
smbraille
smmono9
smmono12
wideterm

Filter:
metal

gay 
 
(Click image for large view)



Like it ? Share it.