Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zap2ivil converter problem #556

Open
alirezakv opened this issue Sep 4, 2017 · 1 comment
Open

zap2ivil converter problem #556

alirezakv opened this issue Sep 4, 2017 · 1 comment

Comments

@alirezakv
Copy link

There is a problem with zap2ivil converter on line 151, 170 and 187 which will cause the converter to fail:
line 151: foreach my $obj ( $item->{desc}->{p} ) {
should be changed to : foreach my $obj ( $item->{desc} ) {
line 170: foreach my $obj ( $item->{solution}->{p} ) {
should be changed to : foreach my $obj ( $item->{solution} ) {
line 187: foreach my $obj ( $item->{reference}->{p} ) {
should be changed to : foreach my $obj ( $item->{reference} ) {

@Burrch3s
Copy link

I just checked, and a while ago when I was changing some stuff around, I noticed that as well. I went digging around and changed the way zap was invoked from its current way to executing a python script which used the zap api. I figured that the structure of the report generated my way was different than how seccubus was expecting it so I never thought it was a problem, but still seems like it is.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants