https://efactura.dgi.gub.uy:6475/efactura/ws_personaGetActEmpresarial
https://efactura.dgi.gub.uy:6443/efactura/ws_certificacion?wsdl
robocopy "C:\Users" "E:\backups\Users" /MIR /XA:SH /W:0 /R:1 /REG /XJ |
<?php | |
getCotizacionesWS(); | |
function getCotizacionesWS(){ | |
$context = [ | |
"ssl" => [ | |
"verify_peer" => FALSE, | |
"verify_peer_name" => FALSE, | |
'crypto_method' => STREAM_CRYPTO_METHOD_TLS_CLIENT |
#!/bin/bash | |
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 | |
openssl pkcs12 -inkey key.pem -in cert.pem -export -out keystore.pfx |
#!/bin/bash | |
# $ ssh-keygen -t rsa -b 2048 | |
# If you already have an SSH key, you can skip this step… Just hit Enter for the key and both passphrases: | |
# Copy your keys to the target server: | |
# $ ssh-copy-id id@server | |
# You may also want to look into using ssh-agent if you want to try keeping your keys protected with a passphrase. | |
# CONFIGURACIÓN -------------------- | |
local='/d/wamp64/www/project/' |
Access token
- A token used to access protected resources.Authorization
code - An intermediary token generated when a user authorizes a client to access protected resources on their behalf. The client receives this token and exchanges it for an access token.Authorization
server - A server which issues access tokens after successfully authenticating a client and resource owner, and authorizing the request.Client
- An application which accesses protected resources on behalf of the resource owner (such as a user). The client could be hosted on a server, desktop, mobile or other device.#!/bin/bash | |
# Script para instalar o actualizar el firefox dev | |
# 2022/01/22 [email protected] | |
sudo echo "Descargar Firefox Developer Edition" | |
curl -L "https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=es-ES" -o "firefox-dev.tar.bz2" | |
# Descomprimir en el directorio opt para que pueda ser accesible | |
sudo tar -xvf firefox-dev.tar.bz2 -C /opt/ |