Questions tagged [pem]

PEM, (from Privacy Enhanced Mail standard) is a base64 container format for encoding keys and certificates.

PEM (Privacy Enhanced Mail standard) is a base64 container format that encodes keys and certificates surrounded by header lines, and is used extensively by . It is defined in RFC standards 1421-1424

1003 questions
0
votes
1 answer

Where in a PEM (SSL) file is the passphrase stored? If you open a .pem file in a text editor, can you steal the passphrase?

I'm trying to understand how a .pem file is laid out. How is the passphrase authenticated? How does the .pem file check against itself the passphrase you try to open it with?
Anthony Frizalone
  • 589
  • 1
  • 6
  • 15
0
votes
1 answer

Post XML request with PEM Key

I am using Burpsuite to test SSH-public key credentials via an XML POST Request. Essentially I need to send the PEM file text as part of an XML element, like this: -----BEGIN RSA PRIVATE KEY-----MIICXAIBAAK etc...-----END RSA PRIVATE…
MBguitarburst
  • 267
  • 1
  • 7
  • 21
0
votes
1 answer

Difficulty extracting iphone configuration profile

I recently installed a profile on my iPhone, the profile was in the form of a .pem file. Having installed the certificate, I would like to know how to determine the exact location of the profile on the iOS filesystem. I have iFile installed so if…
0
votes
1 answer

ec2 scp -i mykey.pem Warning: Identity file mykey.pem not accessible: No such file or directory. Permission denied (publickey)

Trying to upload simple a directory or file to an Amazon ec2 instance. I am using the command as follows in the standalone java ssh client and winscp: scp -i mykey.pem ~/Downloads/zuni.jpg…
brock fredin
  • 54
  • 1
  • 4
-1
votes
1 answer

Is any other Tool Available to create Private keys and Certificate other than OpenSSL?

I need to create and test certificate and key generated by thrid party tool other tahn open ssl , IS any tool availiable to use free of cost ?
Syedsma
  • 1,183
  • 5
  • 17
  • 22
-1
votes
0 answers

Connect Oracle Database in Python using pem file

I am trying to connect to oracle data base using cx_Oracle with SSL Certificate (.pem). But am not sure how to use .pem file to connect. import cx_Oracle # Establish the database connection connection = cx_Oracle.connect(user="hr",…
Jim Macaulay
  • 4,709
  • 4
  • 28
  • 53
-1
votes
1 answer

.ppk derived from .pem key works but .pem don't in MobaXterm or file transfer programs

I have an ec2 instance and it .pem key file, which I want to use for transfer files from my local machine to the server I tried to connect the instance by using: mobaXterm with .pem file (before chmod 400 abc.pem) -- Error: Server refused our key /…
gonzalez.ivan90
  • 1,322
  • 1
  • 12
  • 22
-1
votes
0 answers

How to fix implementation of `pkcs8::der::Decode` is not general enough error in Rust

I am trying to use the pkcs8 crate to load a private key but getting compilation error that I am not sure how to fix. My code is basically like this fn load_private_key_from_pem(private_key_path: &str) -> PrivateKeyInfo<'static> { let…
Finlay Weber
  • 2,989
  • 3
  • 17
  • 37
-1
votes
1 answer

nodejs can not detect .pem file

I have a kubernetes typescript file and a .pem file under same parent directory in vscode, but i got error error: ENOENT: no such file or directory, open './cert.pem', it seems like my ts file can not detect pem file exists const…
xx11
  • 1
  • 1
-1
votes
1 answer

Error while attaching IAM policy and launching instance in AWS from AMI

You are not authorized to perform this operation. Encoded authorization failure message:…
-1
votes
1 answer

How to get Public and private keys?

I have generated two files cert.pem and key.pem using OpenSSL command req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 Now I want to get public key from cert.pem file and private key from key.pem file. I have tried various methods…
-1
votes
1 answer

Unable to add certificate during Azure AD app integration

I encounter the following error when attempting to add a certificate, it's filename cert.pem, for an Azure AD app that I am integrating: Failed to add certificate. Error detail: Upload a certificate (public key) with one of the following file types:…
MMenefee
  • 33
  • 4
-1
votes
1 answer

How do I ssh into a aws web server with a .pem key?

I am on a MAC and open terminal, I know how to log into ssh with the command ssh root@domain.com However this web server sent me a .pem key to use as the password. Normally I just enter the password and get in. I have no idea and can't find any help…
MuhuPower
  • 404
  • 3
  • 25
-1
votes
2 answers

How to generate PEM files to install my own SSL certificate?

I have a SSL-certificate Comodo PositiveSSL. There are files: AddTrustExternalCARoot.crt COMODORSAAddTrustCA.crt COMODORSADomainValidationSecureServerCA.crt domain.com.key domain_com.crt Requirements vendor: The certificate, private key, and…
KimAl
  • 1
  • 1
-1
votes
1 answer

Loading .pem onto puttygen error

I'm trying to setup my AWS for an ubuntu VM. For this with putty, I'm using puttygen to get .ppk file from .pem (from AWS) and then I got an error message as shown below. The environment is Windows 10. I actually tried this process on another…
Q Shick
  • 1
  • 1
1 2 3
66
67