-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsvm_en.ini
1247 lines (1247 loc) · 70.6 KB
/
svm_en.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[frmLogin]
frmLogin=Log in - SVM
cmdOK=OK
cmdCancel=Cancel
lbConectando=Loading...
lbPassword=Password:
lbPassword2=Password:
msg(1)=DLL vbRichClient5.dll is NOT registered.
msg(2)=
msg(3)=The integrity of the configuration database is not correct. Recover a backup immediately
msg(4)=The configuration database was not found
msg(5)=The integrity of the main database is not correct. Recover a backup immediately
msg(6)=The main database was not found
msg(7)=Error connecting to server
msg(8)=Error in the connection
msg(9)=Password is incorrect.
msg(10)=Without Memory, please restart this computer and run the program again.
msg(11)=Error opening the configuration database
msg(12)=Already running
msg(13)=The initial configuration file does not exist. Reinstall the program
msg(14)=There is no initial configuration database file. Reinstall the program
msg(15)=The main database file does not exist. Reinstall the program
msg(16)=
msg(17)=The vbRichClient5.dll library is missing. Reinstall the program
msg(18)=The default password is: Ulises2k Do you want to be reminded again?
[frmProject]
frmProject=Simple Vulnerability Manager
Frame(0)=Projects
cmdBuscarPM=Filter projects only from the PM / Client
cmdObtenerInfo=Tool for information
cmdNewFolder=Create directory from the name of the project
cmdServicesScan=Launch Scan to IP
cmdExaminar=Upload screenshot image from the web
cmdEliminarScreenShot=Delete screenshot
cmdCopyScreenShot=Copy
cmdHoy1=Today
cmdHoy2=Today
cmdHoy3=Today
cmdHoy4=Today
cmdHoy5=Today
cmdHoy6=Today
cmdScreenShotAuto=Take Screenshot from the web
cmdOpenDir=Select directory
cmdVulnRefresh=Refresh vulnerabilities
cmdUp=Up
cmdDown=Down
cmdPaste=Paste
cmdBuscarPentester=Filter projects only from the Pentester
cmdUpdate=Refresh
cmdReporte=Create report in Word
cmdEdit=Rename Project
cmdZoomURL=Zoom+
cmdZoomIP=Zoom+
cmdZoomNotas=Zoom+
cmdLanzarAcunetix=Launch Acunetix
cmdServicesReport=Download IP Report
cmdBuscar=Search
lbPMCliente=Creator:
Label1(13)=Mail Subject:
Label1(12)=Project:
lbURL=Web:
lbIP=IP:
Label1(1)=New:
Label1(0)=Finalized:
Label1(2)=Open:
Label1(3)=Rechecked:
Label1(4)=Revision:
lbNotas=Notes/Mail:
lbVulnerabilidades=Vulnerabilities:
lbScreenShot=Website ScreenShot:
Label1(8)=Documentation/Working directory:
lbPentester=Pentester:
Label1(5)=Closed:
lbSolucionadas=Solved:
lbIDWeb=Web ID:
Frame(1)=
cmdZoomMenos=Zoom-
lbAmpliacion=Zoom
mArchivo=Project
mNuevo=New
mGuardar=Save
mActualizar=Refresh
mEditProject=Edit Name
mCreateDirProject=Create Documentation Directory
mCancelar=Cancel
mEliminar=Delete
mSalir=Exit
mVulnerabilidades=Vulnerabilities
mUploadVulnerabilidades=Update project risk on the web (SVN Enterprise version only)
mGestionVuln=Management Vulnerabilities
mGestionReqRes=Management Request and Response
mKnowledgeBase=Knowledge base
mWeb_Scanners=Web Scanners
mOWASP=OWASP
mAcunetix=Acunetix
mNetsparker=Netsparker
mArachni=Arachni
mBurpsuite=Burpsuite
mIBMAppScan=IBM AppScan
mNikto=Nikto
mVega=Vega
mWebInspect=HP WebInspect
mSkipfish=Skipfish
mW3af=W3af
mGenerico=Generic (Own Vulnerabilities)
mServices_Scanners=Services Scanners
mQualys=Qualys
mNessus=Nessus
mOpenVAS=OpenVAS
mNexpose=Nexpose
mStatic_Scanners=Static Scanners
mFortify=Fortify
mFortifyonDemand=Fortify on Demand *
mMicrosoftCAT_NET=Microsoft CAT.NET *
mBrakeman=Brakeman *
mFindBugs=FindBugs *
mRats=Rats *
mRIPS=RIPS *
mFlawfinder=Flawfinder *
mCPPCheck=CPPCheck *
mYASCA=YASCA *
mVisualCodeGrepper=VisualCodeGrepper *
mOWASPLapseProject=OWASP Lapse Project *
mLint=Lint(Android) *
mPMD=PMD *
mDIDFAIL=DIDFAIL *
mTodos1=All (1) *
mTodos2=All (2) *
mAndroid=Android
mOWASPMobile=OWASP Mobile
mOASAM=OASAM
mMobile=Mobile
mAnalisisAndroid=Analyze Android applications
mReportes=Reports
mReportNameVulnerabilities=Create only name Vulnerabilities
mReportClipboardCopy=Create Report to Clipboard
mCrearReportes=Create Reports
mBuscar=Search
mBuscarProyectos=Search Projects
mOpciones=Options
mIdioma=Language...
mEditVM=Connection Settings...
mConfiguracion=Configuration...
mTools=Tools
mIP=IP
mScreenShotWeb=Screenshot Web
mReverseDNS=Perform Reverse DNS to IP
mWeb=Web
mScreenShot=Create a screenshot of the Web
mCopyScreenShot=Copy to clipboard
mPasteScreenShot=Paste image
mDeleteScreenShot=Remove Image
mAddImagenScreenShot=Add an Image file
mBugIdea=Bugs / Idea
mNavegador=Browser Web
mBackupDB=Backup DataBase
mCompactarDB=Compact Database
mInstalarActualizar=Install/Update Externals Tools
mLocal=(Local)
mLocalEnjarify=Enjarify
mLocalNmap=Nmap
mLocalGreenShot=ScreenShot (Greenshot)
mRemoto=(Remote)
mRemotoNmap=Nmap
mRemotoOpenVAS=OpenVAS
mRemotoOpenVASPlugins=OpenVAS Update Plugins
mRemotoArachni=Arachni
mRemotoNessus=Nessus Update Plugins
mRemotoEyeWitness=EyeWitness
mRemotoreconng=Recon-NG
mRemoteAndroidSDK=AndroidSDK
mRemotoApkTools=ApkTools
mRemotoDrozer=Drozer
mRemotoEnjarify=Enjarify
mRemotoQark=Qark
mRemotoMobSF=MobSF
mRemotoAndroBugs_Framework=AndroBugs_Framework
mJavaInstall=Java
mRemotoTodas=All
mUpdateAllScript=Update all scripts
mEditScripts=Edit Scripts
mImportarProyectos=Import Projects (SVN Enterprise version only)
mHelp=Help
mUpdate=Upgrade SVM
mAbout=About...
mPopUpScan=Scan Tools
mQualysScan=Qualys Scan (Internal Appliances)
mQualysScanExternal=Qualys Scan (External)
mNessusScan=Nessus Scan
mOpenVASScan=OpenVAS Scan
mOpenVASScanRemote=OpenVAS Scan (Remote SSH)
mNmapScan=Nmap Scan (Local)
mNmapScanRemote=Nmap Scan (Remote)
mPopUpReport=Reports Tools
mQualysReportPDF=Qualys Report PDF
mQualysReportXML=Qualys Report XML
mPopUpScanWeb=Scan Tools
mAcunetix11Remoto=Acunetix Scan >=v11 (Remote)
mAcunetixScan=Acunetix Scan (Local)
mNetsparkerScan=Netsparker Scan
mArachniScanRemote=Arachni Scan
mBurpsuiteScan=Burpsuite Scan
mPopUpVuln=Actions
mAgregarVulnerabilidad=Add Vulnerability
mDetalles=See Description/Impact/Solution
mSolucionada=Solved
mUploadVulnerabilidades2=Upload Web Vulnerabilities
mPopUpInformation=Information Tools
mReconng=Recon-ng
mEyeWitness=EyeWitness
list(Name)=Name
list(date)=Date
list(size)=Size
toolTip(1)=New
toolTip(2)=Save
toolTip(3)=Delete
toolTip(4)=Cancel
toolTip(5)=Buscar
toolTip(6)=Configuration
toolTip(7)=Edit Scripts
toolTip(8)=Web Browser
toolTip(9)=Import Web Projects
toolTip(10)=Report Bug/Idea
toolTip(11)=Language
toolTip(12)=Report
toolTip(13)=Upload Vulnerabilities to the Web
toolTip(14)=Update SVM
toolTip(15)=Rename
msg(1)=The Linux Server is not configured. Verify in the Options/Configuration/[General] Menu-[Credentials]->Linux
msg(2)=Select a project or create a new project.
msg(3)=The vulnerability report was copied to the clipboard. This is useful to paste it into an email to send to the client.
msg(4)=It is not an image
msg(5)=The following IP is not valid:
msg(6)=No URLs
msg(7)=The name of the vulnerabilities were copied to the clipboard. This is useful to paste it into an email to send to the client.
msg(8)=The APIURL of Acunetix is missing
msg(9)=The APIKEY of Acunetix is missing
msg(10)=Put the protocol to the web ( http:// o https:// )
msg(11)=You must enter a project name
msg(12)=Are you sure you want to delete the project?
msg(13)=Verify in the Options/Configuration/[Web Scanner]-[Acunetix]->Directory: since the directory does not exist
msg(14)=Verify in the Options/Configuration/[Web Scanner]-[Burpsuite]->Directory: since the directory does not exist
msg(15)=No vulnerabilities
msg(16)=The Linux Server is not configured. Verify in the Menu Options/Configuration/[General]-[Credentials]->Linux
msg(17)=Configure the Nessus options in, Options/Configuration/[Services Scanner]-[Nessus]
msg(18)=No IP addresses
msg(19)=Verify in the Options/Configuration/[Web Scanner]-[Netsparker]->Directory: since the directory does not exist
msg(20)=Configure the Netsparker options in the Options/Configuration/[Web Scanner]-[Netsparker]
msg(21)=Configure the Nmap options in the Options/Configuration/[Service Scanner]-[Nmap]
msg(22)=The file does not exist:
msg(23)=The IP is not a Public IP that can be scanned with the Qualys External servers
msg(24)=The Linux Server is not configured. Verify in the Menu Options/Configuration/[General]-[Credentials]->Linux
msg(25)=Select an assigned vulnerability
msg(26)=Select a directory
msg(27)=Vulnerabilities: 0
msg(28)=Solved: 0
msg(29)=Add vulnerabilities
msg(30)=Vulnerabilities:
msg(31)=Solved:
msg(32)=Project:
msg(33)=Analyzed Web:
msg(34)=IP Analizadas:
msg(35)=Risk:
msg(36)=Description:
msg(37)=Impact:
msg(38)=Solution:
msg(39)=Reference:
msg(40)=Web/IP:
msg(41)=Request:
msg(42)=Response:
msg(43)=There is a new version. Do you want to download it?
msg(44)=The directory does not exist, create the directory first and try again. Create the directory:
[frmAbout]
frmAbout=About Simple Vulnerability Manager
cmdOK=OK
lbTel=Mobile:
lbContact=Contacto:
lbWeb=Web:
lblDescription=Program to generate reports, run scans and manage vulnerability projects.
lbSocial=Follow me:
[frmAndroid]
frmAndroid=Analysis of Android applications
Frame1(0)=Android
Frame3=Tool Android Remotes:
cmdInstallApkRemoto=Install Apk
cmdMobSF=MobSF
cmdEnjarifyRemoto=Enjarify
cmdQark=Qark
cmdAndroBugs_Framework=AndroBugs_Framework
cmdApktoolRemoto=ApkTool
Frame2=Tools Android Locals:
cmdEnjarifyLocal=Enjarify
cmdApktoolRemote=ApkTool
cmdJdgui=JD-GUI
runAVD=AVD
cmdUploadFile=Upload File
cmdInstallApk=
cmdUpdateComandos=
cmdEjecutar=
cmdBrowserApk=
lbComandos=Commands to execute:
lbApkFileCert=Apk / Files / Certificates:
lbDirectorio=Working directory / Documentation / Apktool (Build):
lbProyecto=Project:
list(name)=Name
list(date)=Date
list(size)=Size
mAnalisis=Analyze APK
mLocal=Local
mInstallAPK=Install APK
mUploadFile=Install Certificate
mApktoolLocal=Apktool (Decompilar)
mEmulador=Emulator with Proxy
mEnjarifyLocal=Enjarify
mjdgui=JD-GUI
mRemotas=Remote
mInstallAPKRemote=Install APK Remote
mAndroBugs_Framework=AndroBugs_Framework
mApktoolRemote=Apktool (Decompilar)
mQARK=QARK
mEnjarifyRemote=Enjarify
mMobSF=MobSF
mCerrar=Close
mToolsExternas=External Tools
mAppium=Automation for Apps (Appium)
mAndroidsecurityawesome=android-security-awesome
mDisableSSL=Disables SSL certificate
mFourWays2Bypass=Four Ways to Bypass Android SSL Verification and Certificate Pinning
mJustTrustMe=JustTrustMe
mCydiaSubstrate=Cydia Substrate
mAndroidSSLTrustKiller=Android-SSL-TrustKiller
mCertificatePinning=Certificate Pinning
msg(1)=There is no file apk
msg(2)=No file selected
msg(3)=Verify that the AndroidManifest.xml file exists within the directory:
[frmBackup]
frmBackup=Backup Database
Frame1=Backup of the database
lbBackupConfig=Backup config.db3:
lbClave=Password:
lbBackupdb=Backup db.db3:
mArchivo=File
mGuardar=Save
mCerrar=Close
msg(1)=Backup Config successfull
msg(2)=Missing fields
msg(3)=Backup DB successfull
msg(4)=The backup file already exists, type another file name.
[frmBrowser]
toolTip(1)=Back
toolTip(2)=Forward
toolTip(3)=Refresh
toolTip(4)=Stop
toolTip(5)=Web SVM
toolTip(6)=OpenVAS
toolTip(7)=Nessus
toolTip(8)=Qualys
toolTip(9)=Simple Vulnerability Manager
toolTip(10)=Acunetix >=v11
[frmSearch]
frmSearch=Seeker
cmdBuscar=Find
Frame(0)=Columns to show when exporting Excel:
chkFechaRevision3=Review date
chkIDWeb=Web ID
chkID=ID
chkEvidencia=Evidence
chkSolucionadasCriticas=Solved Critical
chkSolucionadasAltas=Solved High
chkSolucionadasMedias=Solved Media
chkSolucionadasBajas=Solved Low
chkSolucionadasInfo=Solved Information
chkRiesgoCritico=Critical Risks
chkRiesgoAlto=High Risks
chkRiesgoMedio=Media Risks
chkRiesgoBajo=Low Risks
chkRiesgoInfo=Information Risks
chkFechaInicio=New Date
chkPentester=Pentester
chkPMCliente=Creator
chkNota=Note
chkFechaCierre=Date Closed
chkFechaRevision2=Rechecked Date
chkFechaRevision=Finished Date
chkFechaFin=Open Date
chkIP=IP
chkURL=Web
chkNombreWebSite=Mail Subject
chkNombre=Project
lbAyuda=Search fields: Project, IP, Web
lbBuscar=Search:
mArchivo=File
mCargarProyectos=Load all Projects
mExport=Export to Excel
mCerrar=Close
msg(1)=Microsoft Excel not found. Install some version of Microsoft Excel
msg(2)=Search for a project and then try again
toolTip(1)=Export to Excel
toolTip(2)=Load all Projects
[frmEditScript]
frmEditScript=Script Batch Editor
mArchivo=File
mGuardar=Save
mCerrar=Close
mScript=Scripts
mWebScanner=Web Scanner
mAcunetix11Remoto=Acunetix Scan >=v11 (Remote)
mAcunetix=Acunetix Scan (Local)
mNetsparker=Netsparker
mArachniRemote=Arachni Scan
mArachniLogin=Arachni Login
mArachniLoginFast=Arachni Login Fast (Login_fast.rb)
mArachniLoginSlow=Arachni Login Slow (Login_slow.rb)
mBurpsuite=Burpsuite Scan
mServicesScanner=Services Scanner
mQualysScan=Qualys Scan (Internal Appliances) (External)
mNessus=Nessus Scan
mOpenvas=OpenVAS Scan
mOpenvasRemoto=OpenVAS Scan (Remote SSH)
mNmap=Nmap Scan (Local)
mNmapRemote=Nmap Scan (Remote)
mQualysReportPDF=Qualys Report PDF
mQualysReportXML=Qualys Report XML
mAndroid=Android
mAndroidLocales=Locales
mInstallAPKLocal=Install APK
mInstallCer=Install Certificate
mApktoolLocal=Apktool
mEnjarifyLocal=Enjarify
mEmuladorProxy=Emulador con Proxy
mJDGUI=JD-GUI
mAndroidRemotos=Remotes
mInstallAPKRemoto=Install APK Remote
mAndroBugsFramework=AndroBugs_Framework
mApktoolRemoto=Apktool
mQark=Qark (.bat)
mQarkRemote=Qark (.sh)
mEnjarifyRemoto=Enjarify
mMobsf=MobSF
mReconNG=Recon-ng
mEyeWitness=EyeWitness
mInstalLocal=Install/Update (Local)
mInstallExternal=Install/Update (Remote)
toolTip(1)=Save
toolTip(2)=Refresh
[frmEditVM]
frmEditVM=Connection settings
Frame1=Configuration
lblSegundos=Seconds
lblTimeOut=TimeOut:
lblToken=Token:
lblDefault8443=Default: 8443
lblServer=Server:
lblPuerto=Port:
lblTipo=Type:
mArchivo=File
mGuardar=Save
mCerrar=Close
toolTip(1)=Save
msg(1)=You can try a demo of the Professional license by connecting to Server: svm.myddns.me / Token=svm_demo . CAUTION: This is public. The projects you create can be viewed by any user. Purchase a Professional license for personal use.
[frmFortify]
frmFortify=Fortify
Frame(0)=Fortify
cmdZoomDescripcion=Zoom+
cmdZoomImpacto=Zoom+
cmdZoomSolucion=Zoom+
cmdZoomReferencia=Zoom+
lbReferencia=Reference:
lbRiesgo=Risk:
lbDescripcion=Description:
lbImpacto=Impact:
lbSolucion=Solution:
lbNombre=Name:
Frame(1)=
cmdZoomMenos=Zoom-
lbAmpliacion=Zoom
mArchivo=File
mNuevo=New
mGuardar=Save
mEliminar=Delete
mCancelar=Cancel
mEditName=Editar
mUpdate=Refrescar
mSearch=Search
mSpellCheck=SpellCheck
mCerrar=Close
msg(1)=Are you sure you want to delete the record?
msg(2)=Registry successfully deleted
msg(3)=Select a record
msg(4)=You must choose a name if you want to save the changes, or create a new one
msg(5)=Do you want to add a new vulnerability?
msg(6)=Microsoft Office Word not found. Install some version of Microsoft Office
toolTip(1)=New
toolTip(2)=Edit
toolTip(3)=Save
toolTip(4)=Delete
toolTip(5)=Refresh
toolTip(6)=Check Spelling
[frmIdeasBugs]
frmIdeasBugs=Bugs / Ideas
Frame(0)=Report Bug / Ideas
lbEmail=Email:
lbNombre=Name:
lbTipo=Type:
lbDescripcion=Description:
lbFile=Image:
mArchivo=File
mEnviar=Submit
mCerrar=Close
mImage=Image
mCopyImage=Copy Image
mPasteImage=Paste Image
mAddImage=Add Image
mDeleteImage=Delete Image
msg(1)=It is not image
msg(2)=Thank you
toolTip(1)=Submit
[frmImportProject]
frmImportProject=Import Projects
mArchivo=File
mDescargar=Download Projects
mCerrar=Close
toolTip(1)=Get the projects
msg(1)=This project already exists, do you want to update it with the data from the Web?
msg(2)=The WebSVM User/Password is missing
[frmLanguage]
frmLanguage=Idioma / Language
Frame1=Idioma / Language
mArchivo=File
mGuardar=Save
mCerrar=Close
toolTip(1)=Save
[frmOASAM]
frmOASAM=OASAM
Frame1=OASAM
cmdEdit=
cmdUpdate=
lbReferencia=Reference:
lbSolucion=Solution:
lbImpacto=Impact:
lbDescripcion=Description:
lbRiesgo=Risk:
lbNombre=Name:
mArchivo=File
mNuevo=New
mGuardar=Save
mEliminar=Delete
mCancelar=Cancel
mEditName=Edit Name
mUpdate=Refresh
mSearch=Search
mSpellCheck=SpellCheck
mCerrar=Close
msg(1)=Already exists, choose another name
msg(2)=Are you sure you want to delete the record ?. The vulnerability will be eliminated in all projects where it appears too!
msg(3)=Select a record
msg(4)=Microsoft Office Word not found. Install some version of Microsoft Office
toolTip(1)=New
toolTip(2)=Save
toolTip(3)=Delete
toolTip(4)=Refresh
toolTip(5)=Check Spelling
[frmOWASP]
frmOWASP=OWASP
Frame(0)=OWASP
cmdBuscar=Search
cmdUpdate=Update
cmdZoomDescripcion=Zoom+
cmdZoomImpacto=Zoom+
cmdZoomSolucion=Zoom+
cmdZoomReferencia=Zoom+
lbNombre=Name:
lbRiesgo=Risk:
lbDescripcion=Description:
lbImpacto=Impact:
lbSolucion=Solution:
lbReferencia=Reference:
Frame(1)=
cmdZoomMenos=Zoom-
lbAmpliacion=
mArchivo=File
mNuevo=New
mGuardar=Save
mEliminar=Delete
mCancelar=Cancel
mEditName=Edit Name
mUpdate=Refresh
mSearch=Search
mSpellCheck=SpellCheck
mCerrar=Close
msg(1)=Already exists, choose another name
msg(2)=Are you sure you want to delete the record ?. The vulnerability will be eliminated in all projects where it appears too!
msg(3)=Select a record
msg(4)=Microsoft Office Word not found. Install some version of Microsoft Office
toolTip(1)=New
toolTip(2)=Edit
toolTip(3)=Save
toolTip(4)=Delete
toolTip(5)=Refresh
toolTip(6)=Check Spelling
[frmOWASPMobile]
frmOWASPMobile=OWASP Mobile Security Project
Frame(0)=OWASP Mobile
cmdZoomReferencia=Zoom+
cmdZoomSolucion=Zoom+
cmdZoomImpacto=Zoom+
cmdZoomDescripcion=Zoom+
cmdUpdate=Refresh
cmdBuscar=Search
lbReferencia=Reference:
lbSolucion=Solution:
lbImpacto=Impact:
lbDescripcion=Description:
lbRiesgo=Risk:
lbNombre=Name:
Frame(1)=
cmdZoomMenos=Zoom-
lbAmpliacion=lbAmpliacion
mArchivo=File
mNuevo=New
mGuardar=Save
mEliminar=Delete
mCancelar=Cancel
mEditName=Edit Name
mUpdate=Refresh
mSearch=Search
mSpellCheck=SpellCheck
mCerrar=Close
msg(1)=Already exists, choose another name
msg(2)=Are you sure you want to delete the record ?. The vulnerability will be eliminated in all projects where it appears too!
msg(3)=Select a record
msg(4)=You must choose a name if you want to save the changes, or create a new one
msg(5)=Microsoft Office Word not found. Install some version of Microsoft Office
toolTip(1)=New
toolTip(2)=Save
toolTip(3)=Delete
toolTip(4)=Cancel
toolTip(5)=Refresh
toolTip(6)=Check Spelling
[frmRename]
frmRename=Rename
Frame1=Rename
lbNombre=Name:
toolTip(1)=Save
toolTip(2)=Cancel
[frmReport]
frmReport=Reports - Generator
Frame(0)=
chkVulnDescripcion(0)=Description
chkAnexoWebIPAfectada(0)=Target
chkAnexoRequestComentarios(0)=Comments
chkAnexoResponse(0)=Response
cmdTituloZoom(0)=Zoom
chkVulnImagen(0)=Evidence
lbDetalle(0)=Detail
chkVulnResponse(0)=Response
chkVulnRequestComentarios(0)=Comments
chkVulnWebIpAfectada(0)=Target
chkAnexoImagen(0)=Evidence
lbDetalle2(0)=Detail
chkVulnRiesgo(0)=Risk
chkVulnNombre(0)=Name Vulnerability
chkVulnReferencia(0)=Reference
chkVulnSolucion(0)=Solution
chkVulnImpacto(0)=Impact
chkPaginaAnexo(0)=Insert Page Break
chkAnexo(0)=
chkPaginaDetalle(0)=Insert Page Break
chkPaginaVulnerabilidades(0)=Insert Page Break
chkPaginaObjetivo(0)=Insert Page Break
chkPaginaIntroduccion(0)=Insert Page Break
chkPaginaResumen(0)=Insert Page Break
chkObjetivo(0)=
chkConclusion(0)=
chkDetalle(0)=
chkVulnerabilidades(0)=
chkIntroduccion(0)=
chkResumen(0)=
chkSubtitulo(0)=
chkTitulo(0)=
cmdAnexoZoom(0)=
cmdConclusionZoom(0)=
cmdDetallesZoom(0)=
cmdResumenVulnerabilidadesZoom(0)=
cmdVulnerabilidadesZoom(0)=
cmdObjetivoZoom(0)=
cmdIntroduccionZoom(0)=
chkConclusionGraficoEstadistico(0)=Statistical Graph
chkURLResumen(0)=Web
chkIPResumen(0)=IP
lbTitulo(0)=[Titulo]
lbSubtitulo(0)=[SubTitulo]
Frame(3)=
cmdZoomMenos(0)=Zoom-
lbAmpliacion=Zoom
Frame(2)=
chkIPResumen(2)=IP
chkURLResumen(2)=Web
chkConclusionGraficoEstadistico(2)=Statistical Graph
cmdIntroduccionZoom(2)=
cmdObjetivoZoom(2)=
cmdVulnerabilidadesZoom(2)=
cmdResumenVulnerabilidadesZoom(2)=
cmdDetallesZoom(2)=
cmdConclusionZoom(2)=
cmdAnexoZoom(2)=
chkTitulo(2)=
chkSubtitulo(2)=
chkResumen(2)=
chkIntroduccion(2)=
chkVulnerabilidades(2)=
chkDetalle(2)=
chkConclusion(2)=
chkObjetivo(2)=
chkPaginaResumen(2)=Insert Page Break
chkPaginaIntroduccion(2)=Insert Page Break
chkPaginaObjetivo(2)=Insert Page Break
chkPaginaVulnerabilidades(2)=Insert Page Break
chkPaginaDetalle(2)=Insert Page Break
chkAnexo(2)=
chkPaginaAnexo(2)=Insert Page Break
lbDetalle2(2)=Detail
chkVulnDescripcion(2)=Description
chkVulnImpacto(2)=Impact
chkVulnSolucion(2)=Solution
chkVulnReferencia(2)=Reference
chkVulnNombre(2)=Name Vulnerability
chkVulnRiesgo(2)=Risk
chkAnexoImagen(2)=Evidence
lbDetalle(2)=Detalle
chkVulnWebIpAfectada(2)=Target
chkVulnRequestComentarios(2)=Comments
chkVulnResponse(2)=Response
chkVulnImagen(2)=Evidence
chkAnexoWebIPAfectada(2)=Target
chkAnexoRequestComentarios(2)=Comments
chkAnexoResponse(2)=Response
cmdTituloZoom(2)=Zoom
lbSubtitulo(2)=[SubTitulo]
lbTitulo(2)=[Titulo]
Frame(1)=
chkIPResumen(1)=IP
chkURLResumen(1)=Web
chkConclusionGraficoEstadistico(1)=Statistical Graph
cmdIntroduccionZoom(1)=Zoom+
cmdObjetivoZoom(1)=Zoom+
cmdVulnerabilidadesZoom(1)=Zoom+
cmdResumenVulnerabilidadesZoom(1)=Zoom+
cmdDetallesZoom(1)=Zoom+
cmdConclusionZoom(1)=Zoom+
cmdAnexoZoom(1)=Zoom+
chkTitulo(1)=
chkSubtitulo(1)=
chkResumen(1)=
chkIntroduccion(1)=
chkVulnerabilidades(1)=
chkDetalle(1)=
chkConclusion(1)=
chkObjetivo(1)=
chkPaginaResumen(1)=Insert Page Break
chkPaginaIntroduccion(1)=Insert Page Break
chkPaginaObjetivo(1)=Insert Page Break
chkPaginaVulnerabilidades(1)=Insert Page Break
chkPaginaDetalle(1)=Insert Page Break
chkAnexo(1)=
chkPaginaAnexo(1)=Insert Page Break
chkVulnDescripcion(1)=Description
chkVulnImpacto(1)=Impact
chkVulnSolucion(1)=Solution
chkVulnReferencia(1)=Reference
chkVulnNombre(1)=Name Vulnerability
chkVulnRiesgo(1)=Risk
chkAnexoImagen(1)=Evidence
lbDetalle2(1)=Detail
chkVulnWebIpAfectada(1)=Target
chkVulnRequestComentarios(1)=Comments
chkVulnResponse(1)=Response
chkVulnImagen(1)=Evidence
lbDetalle(1)=Detail
chkAnexoWebIPAfectada(1)=Target
chkAnexoRequestComentarios(1)=Comments
chkAnexoResponse(1)=Response
cmdTituloZoom(1)=Zoom
lbSubtitulo(1)=[SubTitulo]
lbTitulo(1)=[Titulo]
lbProyecto=[Proyecto]
lbImagenMetodologia=[Metodologia]
mArchivo=File
mConfiguracion=Configuration
mCerrar=Close
mReporte=Report
mGuardarReporte=Save conf. of this Report
mReporteWord=Create Word Report
mPredeterminado=Predetermined
mRestablecerPrede=Reset Default Report
mGuardarPredeterminado=Save as Default Report
msg(1)=Select a type of report
msg(2)=Are you sure you want to restore the values of the current report with the default values?
msg(3)=There is no default data for this report
msg(4)=Select a type of report
msg(5)=Are you sure you want to save the selected report data as default?
msg(6)=Select a project
msg(7)=Choose a color for the Statistical chart in Settings / General-> Report
msg(8)=Microsoft Word not found. Install some version of Microsoft Word
msg(9)=Select a Table Style in Settings/General-> Report
msg(10)=There is already a report with the same name. Save it with another name
msg(11)=The evidence directory was not found to save it automatically. Save the report
msg(12)=Technical report
msg(13)=Executive report
msg(14)=Generic Report
msg(15)=Vulnerabilities
msg(16)=Risk:
msg(17)=Count
msg(18)=Analyzed Web:
msg(19)=Analyzed IP:
msg(20)=You need to have Microsoft Office Word installed (any version) to generate the report.
msg(21)=There is no template Please go to Settings -> [General] -> Report-> Templates.
toolTip(1)=Create Word Report
toolTip(2)=Save configuration of this report
toolTip(3)=Report Settings
[frmRequest_Response]
frmRequest_Response=Requests & Responses
Frame(0)=Requests And Responses
cmdReverseDNS=ReverseDNS
cmdAdd=Add
cmdCopyClipboard=Copy
cmdZoomRequest=Zoom+
cmdZoomResponse=Zoom+
cmdZoomWebIP=Zoom+
lbRequest=Request / Comments:
lbResponse=Response:
lbEvidencia=Evidence:
lbProyecto=Project:
lbVulnerabilidad=Vuln:
lbCount=0
lbCantidad=Count:
lbWebIP=Web / affected IP:
Frame(1)=
cmdAdd=
cmdZoomMenos=Zoom-
lbAmpliacion=lbAmpliacion
mArchivo=File
mNuevo=New
mGuardar=Save
mEliminar=Delete
mCancelar=Cancel
mReverseDNS=Perform ReverseDNS to IP
mSpellCheck=SpellCheck
mUpdate=Refresh
mCerrar=Close
mEvidencia=Evidencia
mCopy=Copy Image
mPaste=Paste Image
mAddFile=Add Image
mDelete=Delete Image
mWebIPAdd=Add Web / IP Affected
mWebIP=Web:
msg(1)=The IP is not valid:
msg(2)=Are you sure you want to delete this Request-Response?
msg(3)=There is no Request-Response to remove
msg(4)=Select a project
msg(5)=You must create a new Request/Response value
msg(6)=It is not a valid image
msg(7)=There is no image to see
msg(8)=Select a vulnerability
msg(9)=Microsoft Office Word not found. Install some version of Microsoft Office
toolTip(1)=New
toolTip(2)=Save
toolTip(3)=Delete
toolTip(4)=Cancel
toolTip(5)=Check Spelling
[frmServicesScanner]
frmServicesScanner=Scanner Services
Frame(0)=Vulnerability:
cmdBuscarNombre=Search
cmdBuscar=Search
cmdUpdate=Refresh
cmdZoomDescripcion=Zoom+
cmdZoomImpacto=Zoom+
cmdZoomSolucion=Zoom+
cmdZoomReferencia=Zoom+
lbPluginID=Plugin ID:
lbReferencia=Reference:
lbSolucion=Solution:
lbImpacto=Impact:
lbDescripcion=Description:
lbRiesgo=Risk:
lbNombre=Name:
Frame(1)=
cmdZoomMenos=Zoom-
lbAmpliacion=Zoom
lbPrograma=Program:
mArchivo=File
mNuevo=New
mGuardar=Save
mEliminar=Delete
mCancelar=Cancel
mEditName=Edit Name
mUpdate=Refresh
mSpellCheck=SpellCheck
mCerrar=Close
toolTip(1)=New
toolTip(2)=Edit
toolTip(3)=Save
toolTip(4)=Delete
toolTip(5)=Cancel
toolTip(6)=Check Spelling
msg(1)=Plugin not found
msg(2)=Are you sure you want to delete the record ?. The vulnerability will be eliminated in all projects where it appears too!
msg(3)=Select a record
msg(4)=Already exists, choose another name
msg(5)=You must choose a name if you want to save the changes, or create a new one
msg(6)=Microsoft Office Word not found. Install some version of Microsoft Office
[frmVulnerabilities]
frmVulnerabilities=Vulnerabilities
Frame1=Vulnerabilities in the Project
cmdVulnRefresh=Reload
cmdUp=UP
cmdDown=Down
chkNombre=Name
cmdUpdate=Refresh
chkReferencia=Reference
chkSolucion=Solution
chkImpacto=Impact
chkDescripcion=Description
chkSolucionada=Solved? (Checked = Yes):
cmdBuscarNext=Search Next
cmdBuscar=Search
cmdRemove=Delete
cmdAdd=Add
lbDisponibles=Available:
lbAsignadas=Assigned:
lbProyecto=Project:
lbBuscar=Search by:
mArchivo=Vulnerabilities
mAddVulnerabilities=Assign to the Project
mRemoveVulnerabilities=Remove from the Project
mUpdate=Refresh Available
mVulnRefresh=Refresh Assigned
mOrden=Order
mUpAsignada=Up Assigned
mDownAsignada=Down Assigned
mSearch=Search for
mSearchNext=Search Next
mClose=Close
mnuPopup=Menu
mDetalles=See Description/Impact/Solution
mnuPopup2=Menu
mDetalles2=See Description/Impact/Solution
msg(1)=Select an assigned vulnerability
msg(2)=The same vulnerability already exists for the project
msg(3)=Select a vulnerability
msg(4)=Check because there is an error. Two identical IDs. ID=
msg(5)=No vulnerabilities
msg(6)=No vulnerability found
[frmWebScanners]
frmWebScanners=WebScanner
Frame(0)=Vulnerability
cmdBuscar=Search
cmdUpdate=Refresh
cmdZoomDescripcion=Zoom+
cmdZoomImpacto=Zoom+
cmdZoomSolucion=Zoom+
cmdZoomReferencia=Zoom+
lbReferencia=Reference
lbOWASP=OWASP:
lbRiesgo=Risk:
lbDescripcion=Description
lbImpacto=Impact:
lbSolucion=Solution:
lbNombre=Name:
Frame(1)=Ampliacion
cmdZoomMenos=Zoom-
lbAmpliacion=Ampliacion
lbScanner=Program:
mArchivo=File
mNuevo=New
mGuardar=Save
mEliminar=Delete
mCancelar=Cancel
mEditName=Edit Name
mUpdate=Refresh
mSearch=Search
mSpellCheck=SpellCheck
mCerrar=Close
toolTip(1)=New
toolTip(2)=Edit
toolTip(3)=Save
toolTip(4)=Delete
toolTip(5)=Refresh
toolTip(6)=Check Spelling
msg(1)=Are you sure you want to delete the record ?. The vulnerability will be eliminated in all projects where it appears too!
msg(2)=Select a record
msg(3)=Already exists, choose another name
msg(4)=You must choose a name if you want to save the changes, or create a new one
msg(5)=Microsoft Office Word not found. Install some version of Microsoft Office
[frmSettings]
frmSettings=Settings
Frame(0)=Qualys - Vulnerability Management
chkQualysAutoReport=Automatically generate the report when the Scanning finishes