Run this command to install the SDK:
npm install cloudmersive-validate-api-client --save
Or add this snippet to your package.json:
"dependencies": {
"cloudmersive-validate-api-client": "^1.3.9"
}Run this command to install the SDK:
npm install cloudmersive-validate-api-client --save
Or add this snippet to your package.json:
"dependencies": {
"cloudmersive-validate-api-client": "^1.3.9"
}var CloudmersiveValidateApiClient = require('cloudmersive-validate-api-client');
var defaultClient = CloudmersiveValidateApiClient.ApiClient.instance;
// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = 'YOUR API KEY';
var apiInstance = new CloudmersiveValidateApiClient.DomainApi();
var value = "value_example"; // String | URL or relative path to check, e.g. \"/admin/login\". The input is a string so be sure to enclose it in double-quotes.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.domainIsAdminPath(value, callback);
Run this command to install the SDK:
pip install cloudmersive-validate-api-client
from __future__ import print_function
import time
import cloudmersive_validate_api_client
from cloudmersive_validate_api_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: Apikey
configuration = cloudmersive_validate_api_client.Configuration()
configuration.api_key['Apikey'] = 'YOUR_API_KEY'
# create an instance of the API class
api_instance = cloudmersive_validate_api_client.DomainApi(cloudmersive_validate_api_client.ApiClient(configuration))
value = 'value_example' # str | URL or relative path to check, e.g. \"/admin/login\". The input is a string so be sure to enclose it in double-quotes.
try:
# Check if path is a high-risk or vulnerable server administration path
api_response = api_instance.domain_is_admin_path(value)
pprint(api_response)
except ApiException as e:
print("Exception when calling DomainApi->domain_is_admin_path: %s\n" % e)
Run this command to install the SDK:
Install-Package Cloudmersive.APIClient.NET.Validate -Version 3.2.0
Run this command to install the SDK:
Install-Package Cloudmersive.APIClient.NETCore.Validate -Version 2.1.6
using System;
using System.Diagnostics;
using Cloudmersive.APIClient.NET.Validate.Api;
using Cloudmersive.APIClient.NET.Validate.Client;
using Cloudmersive.APIClient.NET.Validate.Model;
namespace Example
{
public class DomainIsAdminPathExample
{
public void main()
{
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
var apiInstance = new DomainApi();
var value = value_example; // string | URL or relative path to check, e.g. \"/admin/login\". The input is a string so be sure to enclose it in double-quotes.
try
{
// Check if path is a high-risk or vulnerable server administration path
IsAdminPathResponse result = apiInstance.DomainIsAdminPath(value);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DomainApi.DomainIsAdminPath: " + e.Message );
}
}
}
}
using System;
using System.Diagnostics;
using Cloudmersive.APIClient.NETCore.Validate.Api;
using Cloudmersive.APIClient.NETCore.Validate.Client;
using Cloudmersive.APIClient.NETCore.Validate.Model;
namespace Example
{
public class DomainIsAdminPathExample
{
public void main()
{
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
var apiInstance = new DomainApi();
var value = value_example; // string | URL or relative path to check, e.g. \"/admin/login\". The input is a string so be sure to enclose it in double-quotes.
try
{
// Check if path is a high-risk or vulnerable server administration path
IsAdminPathResponse result = apiInstance.DomainIsAdminPath(value);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DomainApi.DomainIsAdminPath: " + e.Message );
}
}
}
}
To install with Maven, add a reference to the repository in pom.xml:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>And add a reference to the dependency in pom.xml:
<dependencies>
<dependency>
<groupId>com.github.Cloudmersive</groupId>
<artifactId>Cloudmersive.APIClient.Java</artifactId>
<version>v4.25</version>
</dependency>
</dependencies>To install with Gradle, add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}And add the dependency in build.gradle:
dependencies {
implementation 'com.github.Cloudmersive:Cloudmersive.APIClient.Java:v4.25'
}// Import classes:
//import com.cloudmersive.client.invoker.ApiClient;
//import com.cloudmersive.client.invoker.ApiException;
//import com.cloudmersive.client.invoker.Configuration;
//import com.cloudmersive.client.invoker.auth.*;
//import com.cloudmersive.client.DomainApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: Apikey
ApiKeyAuth Apikey = (ApiKeyAuth) defaultClient.getAuthentication("Apikey");
Apikey.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.setApiKeyPrefix("Token");
DomainApi apiInstance = new DomainApi();
String value = "value_example"; // String | URL or relative path to check, e.g. \"/admin/login\". The input is a string so be sure to enclose it in double-quotes.
try {
IsAdminPathResponse result = apiInstance.domainIsAdminPath(value);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DomainApi#domainIsAdminPath");
e.printStackTrace();
}
Run this command to install the SDK:
composer require cloudmersive/cloudmersive_validate_api_client
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Apikey
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Apikey', 'YOUR_API_KEY');
$apiInstance = new Swagger\Client\Api\DomainApi(
new GuzzleHttp\Client(),
$config
);
$value = "value_example"; // string | URL or relative path to check, e.g. \"/admin/login\". The input is a string so be sure to enclose it in double-quotes.
try {
$result = $apiInstance->domainIsAdminPath($value);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DomainApi->domainIsAdminPath: ', $e->getMessage(), PHP_EOL;
}
?>
Add the Objective-C client to your Podfile:
Add the Ruby client to your Gemfile:
gem 'cloudmersive-validate-api-client', '~> 2.1.6'
# load the gem
require 'cloudmersive-validate-api-client'
# setup authorization
CloudmersiveValidateApiClient.configure do |config|
# Configure API key authorization: Apikey
config.api_key['Apikey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Apikey'] = 'Bearer'
end
api_instance = CloudmersiveValidateApiClient::DomainApi.new
value = 'value_example' # String | URL or relative path to check, e.g. \"/admin/login\". The input is a string so be sure to enclose it in double-quotes.
begin
#Check if path is a high-risk or vulnerable server administration path
result = api_instance.domain_is_admin_path(value)
p result
rescue CloudmersiveValidateApiClient::ApiError => e
puts "Exception when calling DomainApi->domain_is_admin_path: #{e}"
end
SwagDomainApi api = new SwagDomainApi();
SwagClient client = api.getClient();
// Configure API key authorization: Apikey
ApiKeyAuth Apikey = (ApiKeyAuth) client.getAuthentication('Apikey');
Apikey.setApiKey('YOUR API KEY');
Map<String, Object> params = new Map<String, Object>{
'value' => 'value_example'
};
try {
// cross your fingers
SwagIsAdminPathResponse result = api.domainIsAdminPath(params);
System.debug(result);
} catch (Swagger.ApiException e) {
// ...handle your exceptions
}
Install libcurl in your C/C++ project:
libcurl/7.75.0
This code snippet uses the built-in JavaScript XHR request capability
Run this command to install jQuery:
bower install jquery