Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Debugging Tools

Debugging Tools

Scheduled Pinned Locked Moved The Lounge
toolsquestioncsharpcom
9 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    Jonathan Darka
    wrote on last edited by
    #1

    Not really a programming question, so here goes... Does anyone know the name of a utility that can be used to force a crash in a separate application ? I.e. Force another application to do an "Access Violation", etc. I know there is one, just can't remember the name of it and I don't have time to write one. thanks Jonathan


    Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

    L G P R 4 Replies Last reply
    0
    • J Jonathan Darka

      Not really a programming question, so here goes... Does anyone know the name of a utility that can be used to force a crash in a separate application ? I.e. Force another application to do an "Access Violation", etc. I know there is one, just can't remember the name of it and I don't have time to write one. thanks Jonathan


      Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

      L Offline
      L Offline
      leppie
      wrote on last edited by
      #2

      c:\> debug

      xacc.ide - now with TabsToSpaces support
      IronScheme - 1.0 alpha 4a out now (29 May 2008)

      J 1 Reply Last reply
      0
      • L leppie

        c:\> debug

        xacc.ide - now with TabsToSpaces support
        IronScheme - 1.0 alpha 4a out now (29 May 2008)

        J Offline
        J Offline
        Jonathan Darka
        wrote on last edited by
        #3

        Thanks leppie, Not the one I was trying to think of but useful anyway. Jonathan


        Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

        L 1 Reply Last reply
        0
        • J Jonathan Darka

          Thanks leppie, Not the one I was trying to think of but useful anyway. Jonathan


          Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

          L Offline
          L Offline
          leppie
          wrote on last edited by
          #4

          You could try: - WinDbg - OllyDdg - PEBrowse Debugger

          xacc.ide - now with TabsToSpaces support
          IronScheme - 1.0 alpha 4a out now (29 May 2008)

          1 Reply Last reply
          0
          • J Jonathan Darka

            Not really a programming question, so here goes... Does anyone know the name of a utility that can be used to force a crash in a separate application ? I.e. Force another application to do an "Access Violation", etc. I know there is one, just can't remember the name of it and I don't have time to write one. thanks Jonathan


            Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

            G Offline
            G Offline
            Garth J Lancaster
            wrote on last edited by
            #5

            not sure if it helps, but have a look at the description of 'notmyfault' on this page ... http://technet.microsoft.com/en-us/sysinternals/bb963901.aspx[^]

            J 1 Reply Last reply
            0
            • G Garth J Lancaster

              not sure if it helps, but have a look at the description of 'notmyfault' on this page ... http://technet.microsoft.com/en-us/sysinternals/bb963901.aspx[^]

              J Offline
              J Offline
              Jonathan Darka
              wrote on last edited by
              #6

              Thanks Garth, That's more like what I wanted, although something more to target a specific exe rather than the system. I may just have to write on in the end. regards, Jonathan


              Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

              1 Reply Last reply
              0
              • J Jonathan Darka

                Not really a programming question, so here goes... Does anyone know the name of a utility that can be used to force a crash in a separate application ? I.e. Force another application to do an "Access Violation", etc. I know there is one, just can't remember the name of it and I don't have time to write one. thanks Jonathan


                Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

                P Offline
                P Offline
                Paul Sanders the other one
                wrote on last edited by
                #7

                It's called Windows Vista :) Seriously, a rather heavyweight technique, but one which works if you know a bit of assembler, is to run up Visual Studio, attach to the process, break into it and patch the code at whatever point you find yourself at to do something illegal (such as access memory location 0). You can also do this with the Debugging Tools for Windows (WinDbg). In Visual Studio: - in the memory window, enter EIP into the address box - change the first two bytes displayed to CD 00 (= int 0, an illegal instruction) - press F5 No doubt there is an easier way.

                Paul Sanders http://www.alpinesoft.co.uk

                J 1 Reply Last reply
                0
                • P Paul Sanders the other one

                  It's called Windows Vista :) Seriously, a rather heavyweight technique, but one which works if you know a bit of assembler, is to run up Visual Studio, attach to the process, break into it and patch the code at whatever point you find yourself at to do something illegal (such as access memory location 0). You can also do this with the Debugging Tools for Windows (WinDbg). In Visual Studio: - in the memory window, enter EIP into the address box - change the first two bytes displayed to CD 00 (= int 0, an illegal instruction) - press F5 No doubt there is an easier way.

                  Paul Sanders http://www.alpinesoft.co.uk

                  J Offline
                  J Offline
                  Jonathan Darka
                  wrote on last edited by
                  #8

                  Paul Sanders (AlpineSoft) wrote:

                  It's called Windows Vista

                  :-D I will probably have to do the way you suggested as I cannot find the tool I was thinking of and I don't really have time to write one. thanks,


                  Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

                  1 Reply Last reply
                  0
                  • J Jonathan Darka

                    Not really a programming question, so here goes... Does anyone know the name of a utility that can be used to force a crash in a separate application ? I.e. Force another application to do an "Access Violation", etc. I know there is one, just can't remember the name of it and I don't have time to write one. thanks Jonathan


                    Jonathan Wilkes Darka[Xanya.net] [My Code Project Articles]

                    R Offline
                    R Offline
                    Rich Leyshon
                    wrote on last edited by
                    #9

                    Yes, Symantec antivirus. Crashes IE every time it updates. Rich

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups