Displaying 20 results from an estimated 38 matches for "testpass".
2018 Jul 10
2
custom LLVM Pass with options fails to load
...gnu/libc.so.6+0x3702a)
#5 0x00007fb2821c5bd7 (/lib/x86_64-linux-gnu/libc.so.6+0x2dbd7)
#6 0x00007fb2821c5c82 (/lib/x86_64-linux-gnu/libc.so.6+0x2dc82)
#7 0x0000000001d2b2a9 (opt+0x1d2b2a9)
#8 0x00007fb281efebc2 _GLOBAL__sub_I_CommandLine.cpp
(/home/qwert/projects/ext/projects/cmake/llvm/6.0.0/lib/TestPass.so+0x28bc2)
#9 0x00007fb28343c6ba (/lib64/ld-linux-x86-64.so.2+0x106ba)
#10 0x00007fb28343c7cb (/lib64/ld-linux-x86-64.so.2+0x107cb)
#11 0x00007fb2834418e2 (/lib64/ld-linux-x86-64.so.2+0x158e2)
#12 0x00007fb28343c564 (/lib64/ld-linux-x86-64.so.2+0x10564)
#13 0x00007fb283440da9 (/lib64/ld-linux-x86-...
2018 Jul 12
2
custom LLVM Pass with options fails to load
...t;
aka
llvm::cl::opt<std::string, false, llvm::cl::parser<std::string>>
I guess...
any ideas?
Viktor
Quoting Philip Pfaffe <philip.pfaffe at gmail.com>:
> Hi Viktor,
>
> I believe you shouldn't set LLVM_LINK_COMPONENTS.
>
> You don't need to link your TestPass against anything since opt is expected
> to have everything loaded already. If you're linking against a statically
> built LLVM, then this way you'll pull in other definitions of cl::opt'ions,
> which'll then clash with the ones that are in opt.
>
> Cheers,
> Phili...
2014 Jul 07
4
[LLVMdev] Splitting basic block results in unknown instruction type assertion
...;TestInstVisitor> {
public:
void visitCallInst(CallInst &I) {
Instruction *splitPoint = I.getNextNode();
BasicBlock *head = splitPoint->getParent();
BasicBlock *tail = head->splitBasicBlock(splitPoint);
}
};
class TestPass : public ModulePass {
public:
static char ID;
TestPass() : ModulePass(ID) {}
virtual bool runOnModule(Module &M) {
TestInstVisitor visitor;
visitor.visit(M);
return true;
}
};
}
char TestPass::ID = 0;...
2015 Jul 22
2
[LLVMdev] is it impossible to use the external llvm custom pass on windows?
...RE_NO_WARNINGS
-D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS
-D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -wd4146 -wd4180
-wd4244 -wd4267 -wd4345 -wd4351 -wd4355 -wd4503 -wd4624 -wd4800 -wd4291
-w14062 -we4238 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS
-D__STDC_LIMIT_MACROS -c testpass.cpp
cl /D_USRDLL /D_WINDLL testpass.obj /link /DLL /OUT:testpass.dll
D:\LLVM\llvm-3.4.2\build_nmake\output\lib\LLVMCore.lib ... (including other
LLVM libraries)
Thanks,
Seok Hong
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/ll...
2006 Apr 03
1
How to use Master Users.
...assdb passwd-file {
# Master users that can login as anyone else
args = /etc/dovecot/dovecot.masterusers
master = yes
pass = yes
}
# LDAP database
passdb ldap {
args = /etc/dovecot/dovecot-ldap.conf
}
...
...
}
dovecot.masterusers:
-------------------
testuser:{plain}testpass
# telnet localhost imap
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
* OK IMAP server ready.
1 login realuser*testuser "testpass"
1 NO Authentication failed.
As you can see I get authentication failed. The log shows it fails for
the 'realuser...
2006 Aug 31
1
one example, just one example ...
... of a correctly formatted QUOTA spec in/for a static userdb. That's all I'm
askin' for!
i've tried a bunch of variants. the most recent two:
user at domain.com:{PLAIN}testpass:::::: quota=maildir:storage=4096
user at domain.com:{PLAIN}testpass:::::: maildir:storage=4096
*none* (so far ...) work to override the spec in dovecot.conf.
no errors in the logs; rather, simply:
dovecot: Aug 31 08:54:25 Info: auth(default): passwd-file
/var/MailServer/Data/USERS/imap_user_f...
2013 Aug 29
2
[LLVMdev] [PATCH] cmake: BugpointPasses depends on intrinsics_gen
Fixes:
[ 0%] In file included from /home/abuild/rpmbuild/BUILD/llvm/include/llvm/IR/IntrinsicInst.h:30:0,
from /home/abuild/rpmbuild/BUILD/llvm/include/llvm/InstVisitor.h:16,
from /home/abuild/rpmbuild/BUILD/llvm/tools/bugpoint-passes/TestPasses.cpp:19:
/home/abuild/rpmbuild/BUILD/llvm/include/llvm/IR/Intrinsics.h:41:34: fatal error: llvm/IR/Intrinsics.gen: No such file or directory
---
tools/bugpoint-passes/CMakeLists.txt | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tools/bugpoint-passes/CMakeLists.txt b/tool...
2006 May 25
3
webservice timeout issue
...0422 (5%) | 200 OK [
http://localhost/users/validate]
Processing UsersController#validate (for 127.0.0.1 at 2006-05-24 22:24:02)
[POST]
Session ID: 2129cb461e45d4a67b014b4d265a9cda
Parameters: {"user"=>{"username"=>"testuser", "password"=>"testpass"},
"commit"=>"Validate", "action"=>"validate", "controller"=>"users"}
Timeout::Error (execution expired):
/usr/local/lib/ruby/1.8/timeout.rb:54:in `rbuf_fill''
/usr/local/lib/ruby/1.8/timeout.rb:56:in `timeo...
2015 Jul 22
1
[LLVMdev] is it impossible to use the external llvm custom pass on windows?
...i use this command.
opt.exe -load -Xclang mypass.dll -mypass test.bc -o optimized_test.bc
so, as my expect,
my pass should dump the llvm::Module of 'test.bc',
but, i couldn't see anything in my console.
one the other hand, i can see the result of dump() on Linux with same
source code (testpass.cpp)
Thanks,
Seok Hong
2015-07-22 22:10 GMT+09:00 mats petersson <mats at planetcatfish.com>:
> It would probably help if you explained what happens and how that is
> different from what you expect...
>
> --
> Mats
>
> On 22 July 2015 at 13:17, Hong Seok <seok85.hon...
2006 Jul 18
1
Samba 4 Test deployment with SWAT
...oot' and root password on the local machine or
trying as any another user fails too with this same error message.
After configure, make and make install successfully Samba 4 in
/usr/local/samba4
we ran the provision command as below and the output is as below.
./setup/provision --adminpass=testpass --domain=testdomain --realm=testrealm
Provisioning for testdomain in realm testrealm
Using administrator password: testpass
Setting up smb.conf
Setting up secrets.ldb
Setting up keytabs
Setting up hklm.ldb
Setting up sam.ldb attributes
Setting up sam.ldb schema
Setting up display specifiers
Setting...
2004 Jul 11
2
smbldap-tools, setting password on command line?
...swd, ldappasswd and a tiny
script around these tools. I tried
smbldap-passwd.pl testuser1 < pass
where pass contains on two lines the passwort, but thats a solution I'm not
proud of, especially since I get this warning/error:
fileserver:~ # /opt/samba3/sbin/smbldap-passwd.pl testuser2 < testpasses
Changing password for testuser2
stty: standard input: Inappropriate ioctl for device
New password :
stty: standard input: Inappropriate ioctl for device
stty: standard input: Inappropriate ioctl for device
Retype new password :
stty: standard input: Inappropriate ioctl for device
Is there any st...
2020 Sep 23
2
BUG: _presence_ of valid openssl.cnf Option = 'ServerPreference' causes Dovecot submission relay FAIL: "failed: Failed to initialize SSL: ..."
> On 22/09/2020 21:00 PGNet Dev <pgnet.dev at gmail.com> wrote:
>
>
> On 9/22/20 10:51 AM, Aki Tuomi wrote:
> >>>
> >
> > Well, dovecot does not actually do any parsing for system-wide openssl.cnf. This sounds more like OpenSSL issue than dovecot issue.
>
> I've NO issue with that config/setting with any _other_ app -- whether in general
2003 Oct 29
3
[Fwd: [squid-users] NTLM Authentication Problem]
...1 root root 0 Oct 27 21:21 pipe=
I have samba configured with ads but am not using it. I joined the
domain with rpc and am using security=domain in smb.conf.
The wbinfo commands work fine:
#wbinfo -t
checking the trust secret via RPC calls succeeded
#wbinfo -a TSTDOM\\testuser%testpass
plaintext password authentication succeeded
challenge/response password authentication succeeded
I can also authenticate successfully with the helper from the command line:
#ntlm_auth --username testuser --password testpass
NT_STATUS_OK: Success (0x0)
However, when I try to use ntlm authenticatio...
2013 Aug 29
0
[LLVMdev] [PATCH] cmake: BugpointPasses depends on intrinsics_gen
...writes:
> Fixes:
> [ 0%] In file included from /home/abuild/rpmbuild/BUILD/llvm/include/llvm/IR/IntrinsicInst.h:30:0,
> from /home/abuild/rpmbuild/BUILD/llvm/include/llvm/InstVisitor.h:16,
> from /home/abuild/rpmbuild/BUILD/llvm/tools/bugpoint-passes/TestPasses.cpp:19:
> /home/abuild/rpmbuild/BUILD/llvm/include/llvm/IR/Intrinsics.h:41:34: fatal error: llvm/IR/Intrinsics.gen: No such file or directory
Thanks for the fix, but please submit it to llvm-commits at cs.uiuc.edu for
review. Some maintainers do not read this mailing list on a regular
basis.
2006 Mar 21
1
Functional Test: post - Other controller
...cted
controllers as I haven''t explicitly logged in and got the session.
I thought adding the following to the beginning of my methods in the other
controllers would be ok:
post :login, "user" => { "login" => "username", "password" => "testpass" }
assert_session_has "user"
However, it assumes the current controller being tested. How do I go
through the other login/user controller before running through these tests
requiring user session data?
Is there a way of simply setting the session data to bypass that test?
Would m...
2006 Aug 22
1
HMAC-MD5 / HMAC-MD5-context
$ dovecotpw -p testpass
{HMAC-MD5}fe8522268d91e485ccac8f36800e4fa6b10363e2a371cfa61731109b450906cd
I wonder if the prefix 'HMAC-MD5' is the correct notation here.
According to RFC2104 an HMAC is calculated as follows:
H(K XOR opad, H(K XOR ipad, text))
where H is the cryptographic hash function (MD5 in this ca...
2006 Aug 27
1
format for per-user QUOTAs in passwd-file?
...imap_quota
mail_plugin_dir = /usr/local/dovecot-plugins/imap
plugin {
quota = maildir:storage=10240 # 10 MB quota limit
}
in my "imap_user_file", i've:
passdb passwd-file {
args = /etc/dovecot/imap_user_file
...
i have:
user at mydomain.com:{PLAIN}testpass:::::: quota=maildir:storage=4096
on login to the user at mydomain.com, however, QUOTA on the account's mailboxes is
reporting as the global default:
10240
something wrong in my user string, i s'pose ...
thanks,
richard
--
/"\
\ / ASCII Ribbon Campaign
X against HTML email...
2005 Aug 25
0
Winbind error plaintext password against Windows 2000 Server AD
...authenticate against
a windows 2000 server AD. After joining the Domain via
net rpc join -U Administrator
I can get all AD users and groups using
wbinfo -u
wbinfo -g
getent passwd
Everything seems to be really fine, but when I try to authenticate against
the AD via
wbinfo -a testuser%testpass
I get:
-x-x-x-
plaintext password authentication failed
error code was NT_STATUS_NO_SUCH_USER (0xc0000064)
error messsage was: No such user
Could not authenticate user testuser%testpass with plaintext password
challenge/response password authentication succeeded
-x-x-x-
So authentication seems t...
2010 Feb 26
0
ntlm_auth and Server 2008 issues
...D servers to windows
server 2008 R2.
Also, I see this over and over in our winbindd.log:
[2010/02/26 14:52:01, 1] nsswitch/winbindd_util.c:trustdom_recv(230)
Could not receive trustdoms
We are running Samba Version 3.0.33-3.15.el5_4.1
Also here is the output of wbinfo -a:
wbinfo -a testuser%testpass
plaintext password authentication failed
error code was NT_STATUS_NO_SUCH_USER (0xc0000064)
error messsage was: No such user
Could not authenticate user testuser%testpass with plaintext password
challenge/response password authentication failed
error code was NT_STATUS_PIPE_DISCONNECTED (0xc00000b0...
2011 Nov 30
1
openldap authentication
...ap schema
as depicted below
# fxmulder at nsab.us, gwis
dn: cn=fxmulder at nsab.us,dc=gwis
objectClass: top
objectClass: person
objectClass: posixAccount
accountid: 65534
uidNumber: 65534
gidNumber: 65534
active: 1
cn: fxmulder at nsab.us
loginShell: /usr/sbin/nologin
sn: nsab.us
wenable: 1
wpass: testpass
whome: /www/nsab.us/nsab.us/fx/fxmulder
I don't suppose there is a similar way to map attributes with samba?
Thanks,
James Devine