Skip to main content

PowerShell for Ethical Hackers Part 3 Introduction to PowerShell ISE & PowerShell ISE Add-On


PowerShell for Ethical Hackers Blog Series

                   


  Part 3: Introduction to PowerShell ISE and PowerShell  ISE Add-On


PowerShell ISE is Integrated Scripting Environment. In PowerShell ISE you can run commands, write scripts ,test and debug your scripts in Graphic User Interface Application. 

Windows PowerShell ISE provides you many features which you can use in PowerShell ISE for do your task easy some of the features are mentioned below.
  1. Multiline Editing
  2. Selective Execution
  3. PowerShell ISE Modules
  4. Restart Manager and Auto Save

Description of PowerShell ISE Features

  1. Multiline Editing: Multi Line editing is a nice feature in PowerShell ISE it saves a lot of time because at a same time you can edit multiple lines in a same file.
  2. Selective Execution:  Selective execution provides you capability to run the selective code which you want to test it means you can select a part of the script and run it in PowerShell Integrated Script Environment (ISE).
  3. PowerShell ISE Modules: The biggest advantage of PowerShell ISE is it provides you the Modules section from where you can select the different modules which you can use for create PowerShell scripts even you can add modules also in PowerShell ISE.
PowerShell Modules
   4. Restart Manager and Auto Save: you can say it is a life saver feature in PowerShell ISE it          automatically save your scripts every two minutes to help you avoid the loss of your work in the
      event of a crash or unexpected restart.


Introduction to PowerShell Add-On

Windows PowerShell ISE Add-on is some piece of code which adds more functionality in PowerShell ISE. Most ISE Add-ons interact and leverage the PowerShell ISE Add-on Model ($PSIse).

For More information on Microsoft Windows PowerShell ISE Add-On visit on this link: PowerShell ISE Add-On


  • You can write a PowerShell ISE Add-On with PowerShell below are the some links mentioned which provides advice and guidance to those wishing to write ISE add-ons along with sample code. 

  
WhatAuthorLink
How to Add Code Snippets to the ISERich Prescotthttp://blog.richprescott.com/2011/06/add-code-snippets-to-powershell-ise.html 
Writing Your First IcicleJames Brundagehttp://powershellise.com/Writing_Your_First_Icicle/ (YouTube Video  
PowerShell v3 ISE and ISE scripting model changes & improvementsRavikanth ChagantiHttp://www.powershellmagazine.com/2011/09/28/powershell-v3-ise-and-ise-scripting-model-changes-improvements/ 

Source: Microsoft

Thats all for this Post. Stay Tuned for next blog post till then Happy Hacking  and yes Happy New Year Guys Enjoy and Party Hard😊😉

#HappyHacking #Blogger #Security #Learner

Comments

Popular posts from this blog

PowerShell for Ethical Hackers

                                                                                                              PowerShell For Ethical Hackers Blog Series  Hello my hacking buddies, Finally i am back with my blog series PowerShell for Ethical Hackers. we all know what is powershell and it easies our task same like linux bash scripting. in this blog series i'll show you some useful test cases which i have performed in real life penetration testing and i am going to show you how to write powershell script from basics to advance level. So, let's Start 😊😉 Part 1: Introduction to PowerShell, why PowerShell is important for Ethical Hackers and PowerShell Framework. Penetration Testing using PowerShell...

Session HI-Jacking

                       Session Hijacking in XSS to MYSQL File Hi, after a long Time i am coming with my new post how to Hijack The someone Session. sounds Interesting. is it possible to hijacking or steal someone cookie or someone Session. Yes! it's possible. I am going to telling you how's it Possible.   First! of All, it is also a Web-App Vulnerability. In OWASP TOP-10  A-2 Broken authentication   and Session managment. Covers the Session managment issues. (1) Session sniffing (2) Session fixation (3) Session hijacking First, for non-technical persons, they want to know what is Session or what is Cookie? A session can be defined as a server-side storage of information that is desired to persist throughout the user's interaction with the web site or web application.  A cookie is a small piece of text stored on a user's comp...