|
| View previous topic :: View next topic |
| Author |
Message |
mbjbdc
|
Posted: Tue Jul 20, 2004 8:01 pm Post subject: isobuster |
|
|
is there a program like isobuster in windows for linux?
|
|
|
 |
Jason
|
Posted: Tue Jul 20, 2004 8:31 pm Post subject: |
|
|
If you mean to look inside ISO files, then you can mount the ISO as a directory and browse it that way.
Open a terminal and type mkdir /mnt/iso
Put this inside a file called mount-iso and save it to /home/somename
| Code: |
#!/bin/sh
mount -o loop /home/somename/nameofiso.iso /mnt/iso
|
Obviously swap somename for your login name and nameofiso.iso for the iso name.
To execute it all you do is open the terminal and type ./mout-iso
|
|
|
 |
|
|
|