Introduction
This AppScanĀ® eXtension improves explore coverage by turning a Directory listing file into an EXD (Explore Data) file.
Details
- Description: FiletoEXD works by taking a directory listing from a file created on either Linux or Windows and importing it directly into AppScan. This means that you can save alot of time and probably get better coverage, in scenarios where the application includes files that are not linked from the site.
- Supported AppScan Version: AppScan v7.5 and above.
- Installation: download the eXtension zip package, launch AppScan, go to Tools->Extensions->Extension Manager and choose install, then point to the zip package.
- Execution: Getting the directory list: On Windows you should use "DIR /B /S > test.txt", on Linux:
#!/usr/bin/perl
# Run this way : ./file.pl "/pathtoWeb"
use File::Find
my @files;
find(sub { push @files, $File::Find::name}, $ARGV[0]);
print "$_\n" for (@files)Screenshot
FiletoEXD in action:
Can this be used with AppScan? Enterprise? If so how do we do it? Thank you.