Questions tagged [trust]

Trust is a measure of how much an entity relies on other entities for its security.

A principal in a system with trusts another principal if it allows its security to depend on assertions made by that other principal. For example, when a web browser assumes that a web site is legitimate because the site shows a certificate signed by a certificate authority, the browser trusts the CA. Trust is often established and propagated through cryptography. The concept is derived from the plain English meaning of the word, which is studied by social sciences.

If your question is about determining what security policy should apply or whether a system meets a desired security policy, and it doesn't involve code, consider asking on Security Stack Exchange.

205 questions
4
votes
1 answer

How to trust a bunch of public pgp keys you trust without doing it manually?

I just need to trust a bunch public keys to use it with pass. Unfortunately I didn't find an easy way to trust all the public keys I've stored locally. The procees I found it its quite expensive in order of time: > gpg --edit-key XXXXXXXXXXXXXXXX …
Zioalex
  • 3,441
  • 2
  • 33
  • 30
4
votes
1 answer

Mercurial trust issues

I am trying to set up a hook to notify me about new commits via mail. Because of the issue described in Mercurial hook not executing properly, I can't seem to get it running by simply adding the following to my .hg/hgrc, since the script wouldn't…
jonny
  • 4,264
  • 4
  • 22
  • 29
4
votes
1 answer

.NET/Security: Limiting runtime-loaded assemblies from accessing certain APIs

In a shell application, I need to be able to load and execute other .NET assemblies at runtime, but without giving them full trust. Essentially, I want to limit them (the loaded assemblies) from touching any system resources (threading, networking,…
user438034
4
votes
1 answer

Using Trust Agents in android app

I'm trying to use recently added TrustAgents. Manifest made by comments in official Android sources on Git. As there is said after implementing such manifest I will be able to extend classes from TrustAgentService. That's it:
Long Smith
  • 1,339
  • 3
  • 21
  • 40
4
votes
1 answer

svn passwordless authentication - using SSL trust

I have the SVN server running under Apache over HTTPS Heres my server-side config, "/etc/httpd/conf.d/subversion.conf": SSLRequireSSL SSLCACertificatePath /etc/pki/CA SSLCACertificateFile /etc/pki/CA/cacert.pem SSLVerifyClient…
Vishnu Kumar
  • 394
  • 6
  • 13
4
votes
3 answers

Application trust level

How can i change Trust level? I writing c# windows form app with oledb and can't use append query because access disable mode prevent that.
Reza Liaghat
  • 313
  • 4
  • 7
  • 15
3
votes
2 answers

Do I need to be careful which Maven Repositories I hook into?

Generally speaking, should one only add the central Maven Repository to a pom.xml + optionally any local Maven Repositories ? In theory (I think?) anybody can set up a repository - is there a 'Maven Repository<->Maven Repository' circle of trust or…
monojohnny
  • 5,894
  • 16
  • 59
  • 83
3
votes
1 answer

ASP.NET webpage skipping Assembly function calls in code behind

Hello StackOverflow, I have an ASP.NET/C# webpage that calls functions from a managed .dll assembly in the code behind. It runs through fine and working on the dev environments, but the production environment skips the functions from the assembly…
ThatRA
  • 69
  • 1
  • 5
3
votes
2 answers

Notification Services custom delivery channel DLL trust issue

We have an instance of SQL Notifcation Services for which we have written a custom delivery channel. We had this process up and running in our QA environment running Windows Server 2003 with SQL Server 2005. It took a little bit of tweaking to the…
3
votes
0 answers

how make LDAP authentication with ForeignSecurityPrincipal Account (2 AD forest 2way trust)? is it possible?

I'm using AD LDAP authentication on my application (redmine, pfsense, ESXi, etc...) I recently successfully made a two way trust relationship between my domain PARIS.france and a foreign domain BERLIN.germany. The domain trust relationship look's…
3
votes
2 answers

Update Java trust certificate store from PKI source anchors on Unix

I manually added some new certificates to /etc/pki/ca-trust/extracted/java/cacerts and it makes Java trust these certificates as Java is configured to use this certificate location. However, from what I'm reading to do it properly and and make sure…
Eleator
  • 51
  • 1
  • 4
3
votes
1 answer

Octave fminunc "trust region become excessively small"

I am trying to run a linear regression using fminunc to optimize my parameters. However, while the code never fails, the fminunc function seems to only be running once and not converging. The exit flag that the fminunc funtion returns is -3, which -…
feargmac
  • 41
  • 4
3
votes
1 answer

Make .NET Delegates (for filtering and ordering) 'trustable'

What would be the best way of making Delegates used in Linq Where and OrderBy methods 'trustable'? For instance, if my code was being passed these types Func and Func, what would be the best option to check that these will only operate…
Lee Atkinson
  • 2,171
  • 3
  • 20
  • 32
3
votes
0 answers

Is any way to Openshift respect Docker ENV variables

I have been working with Docker Notary to help verify the trust of the images that we use, but now I want to use this feature inside Openshift. In theory, Openshift uses the Docker Client so if you setup the environment variable…
Judavi
  • 115
  • 1
  • 10
3
votes
0 answers

Load a .NET assembly with minimal trust

I'm loading an external assembly at runtime, i.e. Assembly.LoadFile(). Is there a way to specify a different (lower) trust level for the dynamically loaded assembly?
Paul
  • 6,188
  • 1
  • 41
  • 63
1
2
3
13 14