-
Notifications
You must be signed in to change notification settings - Fork 52
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
Update NetBackup Documentation #89
base: create-branch
Are you sure you want to change the base?
Conversation
* Update README.md * Update README.md * Update README.md * Update README.md
Config Management and Admin APIs code samples
NetBackup 8.2 API Perl scripts for Config, Admin APIs
NetBackup 8.2 API golang scripts for config, admin APIs
Policy API samples update
Added perl scripts for all GET APIs for VM server credentials and resource limits.
…rage server (#39) * Go scripts for AIR Apis
inital work posting to github. looking to work with the community and veritas on the ansible deployments. msdp_create and vmware_resourcelimits need some assitance. although it looks right from the swagger docs, it seems to through an api error.
Python script for NetBackup AssetDB Cleanup for Cloud workload
updated body yaml to correct syntax.
…i_based_python_code Feature/backup restore api based python code
Get a list of VMware vmServers
Modified to use Python3 print statements
ClientBackup.ps1 is a PowerShell script designed to backup a Windows client using a command line specified policy name and API key. Didn't exactly fit into the directory structure so put in powershell directory.
…_PolicyDetails Create new sample Get-NB-PolicyDetails
Clientbackup script
- added MSSQL recipes - sample json payloads for various API requests - snippets to GET Assets and Recoverypoints
loop count corrected
Feature/mssql dsp api workflow
…_workflow Adding in samples on how to do a restore given multiple copies
Invoking oracle clone using NetBackup APIs.
Adding in script for Oracle RBAC work
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
//############################################################## | ||
func GetHTTPClient() *http.Client { | ||
tlsConfig := &tls.Config { | ||
InsecureSkipVerify: true, //for this test, ignore ssl certificate |
Check failure
Code scanning / CodeQL
Disabled TLS certificate check High
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix AI 5 days ago
To fix the problem, we need to ensure that TLS certificate verification is enabled. This involves setting InsecureSkipVerify
to false
and ensuring that the client is configured with the appropriate certificates for verification.
-
General Fix Approach:
- Set
InsecureSkipVerify
tofalse
. - Load the system's root CA certificates or specify a custom CA certificate if needed.
- Set
-
Detailed Fix:
- Modify the
GetHTTPClient
function to setInsecureSkipVerify
tofalse
. - Optionally, load the system's root CA certificates using
x509.SystemCertPool()
or specify a custom CA certificate.
- Modify the
-
Specific Changes:
- Change line 58 to
InsecureSkipVerify: false
. - Optionally, add code to load the system's root CA certificates.
- Change line 58 to
-
Copy modified line R19 -
Copy modified line R58 -
Copy modified lines R60-R61
@@ -18,2 +18,3 @@ | ||
"crypto/tls" | ||
"crypto/x509" | ||
"encoding/json" | ||
@@ -56,4 +57,6 @@ | ||
func GetHTTPClient() *http.Client { | ||
rootCAs, _ := x509.SystemCertPool() | ||
tlsConfig := &tls.Config { | ||
InsecureSkipVerify: true, //for this test, ignore ssl certificate | ||
InsecureSkipVerify: false, | ||
RootCAs: rootCAs, | ||
} |
storagePath: /mnt/msdp/vol0 | ||
credentials: | ||
userName: msdp | ||
password: msdp |
Check failure
Code scanning / CodeQL
Password in configuration file High
|
||
func getHTTPClient() http.Client { | ||
tr := &http.Transport{ | ||
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, |
Check failure
Code scanning / CodeQL
Disabled TLS certificate check High
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix AI 5 days ago
To fix the problem, we need to ensure that the TLS certificate verification is enabled. This involves setting InsecureSkipVerify
to false
and ensuring that the client is configured with the appropriate certificates to perform verification.
-
General Fix Approach:
- Set
InsecureSkipVerify
tofalse
. - Optionally, load and set the root CA certificates if they are not in the default location.
- Set
-
Detailed Fix:
- Modify the
getHTTPClient
function to setInsecureSkipVerify
tofalse
. - Ensure that the
tls.Config
is properly configured to use the system's root CA certificates.
- Modify the
-
Specific Changes:
- Update the
getHTTPClient
function in thesnippets/go/netbackup.go
file.
- Update the
-
Copy modified line R13 -
Copy modified lines R241-R246 -
Copy modified lines R248-R251
@@ -12,2 +12,3 @@ | ||
"os" | ||
"crypto/x509" | ||
) | ||
@@ -239,4 +240,13 @@ | ||
func getHTTPClient() http.Client { | ||
// Load system's root CA certificates | ||
rootCAs, _ := x509.SystemCertPool() | ||
if rootCAs == nil { | ||
rootCAs = x509.NewCertPool() | ||
} | ||
|
||
tr := &http.Transport{ | ||
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, | ||
TLSClientConfig: &tls.Config{ | ||
InsecureSkipVerify: false, | ||
RootCAs: rootCAs, | ||
}, | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CodeQL found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
[
NetBackup- Documentation.docx
](url)