由买买提看人间百态

topics

全部话题 - 话题: login
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
g***l
发帖数: 18555
1
我找到了一个SCRIPT LOGIN的
USE master
GO
IF OBJECT_ID ('sp_hexadecimal') IS NOT NULL
DROP PROCEDURE sp_hexadecimal
GO
CREATE PROCEDURE sp_hexadecimal
@binvalue varbinary(256),
@hexvalue varchar (514) OUTPUT
AS
DECLARE @charvalue varchar (514)
DECLARE @i int
DECLARE @length int
DECLARE @hexstring char(16)
SELECT @charvalue = '0x'
SELECT @i = 1
SELECT @length = DATALENGTH (@binvalue)
SELECT @hexstring = '0123456789ABCDEF'
WHILE (@i <= @length)
BEGIN
DECLARE @tempint int
DECLARE @firstint in... 阅读全帖
a****y
发帖数: 1035
2
来自主题: sysop版 - Suggestion about the repeat login
My connection is not stable these days. So if I lose
connection, I will be refused to login again: "not allow
repeat login". (in telnet)
Can we delete the old login, not the current one, when
a user try to repeat login which exceeds the limit? Or,
at least, allow user to choose to del the old one.
Otherwise,
I have to wait for old login getting time out.
3x
e***l
发帖数: 3482
3
我一直有个LOGIN,登录后可以看到所有个人帐号和BOA的信用卡。现在打算把我的
BUSINESS CHECKING ACCOUNT也加进去,这样我一个LOGIN进去就可以看到全部。
给BOA客服打电话竟然说必须要再建一个新的LOGIN,这样就太不方便了。
请问有我这种情形的高人给指点一下,可否个人和BUSINESS帐号放在一个LOGIN里?
n*******0
发帖数: 1
4
来自主题: EmergingNetworking版 - Remotely login problem
Hi,
I am not sure if it is good place to ask my questions. If not, please help
me to transfer to the correct forum topic.
Now I am encountering thus problems:
I am using Windows Server 2003 Standard Edition.
If my computer restarts and I do not first login from my office, I can not
run the programs from my home, although I can login my computer via VPN from
my home.
After I login computer first from my office, I can login my computer from my
home via VPN. However, the interface is different from
y*********e
发帖数: 518
5
来自主题: Money版 - Global Entry Login 改了
就这事写email去问了问,得到回复如下。
Thank you for contacting the U.S. Customs and Border Protection (CBP)
Information Center regarding your log in issues.
To migrate your data from the old GOES to the new TTP system please go to
https://ttp.cbp.dhs.gov and select the option that best applies to you from
the homepage.
You will be prompted to create a login.gov account (if you don't already
have one), and to provide biographical information and the PASSID/membership
number from your application or membership. Y... 阅读全帖
T****i
发帖数: 15191
6
【 以下文字转载自 Money 讨论区 】
发信人: pentiumiv (computer+fan), 信区: Money
标 题: 真让工行和建行的网上login气死了
发信站: BBS 未名空间站 (Sat Feb 18 22:45:57 2017, 美东)
去年回国开了这两个行的账户,得到了两张ATM卡。 还有两个附件(一个好像叫银盾,
另一个好像叫U盾)。刚回来时建了online banking,好像还行。但今天就login不进去
了。又是要这个验证,又是要那个验证。关键是我回国时是用美国护照用岳母的手机开
的,现在岳母在这探亲,手机号都取消了,让我到那儿验证? 里面也没多少钱,但听
说国内银行账户好像要收费,就怕到时候还欠它钱,想login看一眼,也进不去。那两
个盾也不知道是干什么用的。为什么要弄的这么麻烦? 后悔当时开了这两个账户
p***n
发帖数: 635
7
来自主题: DotNet版 - Redirecting User to Login Page [fwd]
Redirecting User to Login Page After Session Timeouts
http://www.extremeexperts.com/Net/Articles/RedirectingPageAfterSessionTimeout.
aspx
In most of the applications you might come across the situation where you need
to redirect the user to login page after session timeouts. It is simple, if
you want to redirect user to login page when the user submits the page after
session timeout. You got the control in server, you can check for session
timeout. If that is true, then you can redirect the user
r********x
发帖数: 6
8
来自主题: Security版 - Help with Windows XP: Can't login!!
头脑发热, 可能是下载ZBZ的片片时机器中毒了. SECURITY ALERT显示什么HDDguard.
dll需要处理, 然后似乎机器无休止的运行, 不执行任何程序, 对CTRL+ALT+DEL也不做
任何反应. 无奈之下, 按启动键强行关机. 再启动机器时, 在LONIN界面输入PASSWORD
回车后, 只有DESKTOP的背景图像短暂出现(没有任何上面的ICON显示), 然后很快回到
logging off...的界面(就是正常情况下关机之前的最后那个界面). 然后, 机器并没有
关, 而是重新自动回到LOGIN的界面. 再尝试LOGIN, 结果一样.
尝试了用F8进行SAFE-MODE下的LOGIN, 结果一样.
请高手帮忙指点一下, 如何修复? 谢谢!
b***g
发帖数: 4
9
来自主题: Unix版 - .cshrc?.login?.profile?
I am using tcsh, if I put the command in .login, it will be
executed every
time I open a new xterm window. But on the man page, it says
that tcsh will
invoke .login only if the shell is a login shell. ???

This is what I want, however, I don't have a .xsession file
under my home dir
I am using Iris6.5, do you know which file should I modify?
j***y
发帖数: 87
10
来自主题: Unix版 - .cshrc?.login?.profile?

For Irix, everytime you open an xterm window, a login shell will be invoked,
so it will execute .login once more.
In theory, for irix6.5, you can add a file .sgisession under your home
directory, which will be executed only once for each session. But in practice,
sometime, it doesn't work at all.
So my way is still to add something in .cshrc or .login, but everytime I will
measure if it's first time to be executed.
say, if I only want to call xset +path once, then I add the following script,
se
s*******d
发帖数: 10
11
来自主题: Unix版 - why can't i login to CDE
I can't login into the CDE, when check the startlog and errorlog, it is said
that dtsession unable to start the message server.
remote login by using telnet is correct.
In addition, when I reboot the system, using shutdown -3, the first two login
are correct, but after that, failure.
what's the problems?
Thank you very much!
t**********o
发帖数: 124
12
来自主题: Unix版 - How to make unix-login online?

some
Yes, but how to associate users with its shell login account.
I mean, for Apache, I could config it to let a user log in using passwd and
login name(even the same pair as his unix account), but I have to create
password files sperately for each folder/files. This doesn't mean the unix
system could recognize this user, I think it simply assumes all the users(who
login from CGI webpage) have same previledges as the author(me)of Perl/CGI
program.
But I don't have previledge to run those proc
n**g
发帖数: 6
13
来自主题: Unix版 - How to get CDE login window?
I am using HP_UX 11i. The default login is 'console' login window. How can I
obtain the CDE login window?
K**t
发帖数: 315
14
来自主题: Unix版 - how to kill a login?
login the unix server days ago, then the network disconnected,
but the login is still there for some reason.
since it's univ's server, it's not good leave so many login there.
how to kill them? thx.
k**e
发帖数: 86
15
来自主题: Unix版 - how to kill a login?
Based on the login name and login time, apply 'ps -ef|grep ...' to find the
PID, then kill it (you should have the permission to do this). Generally,
there should be a shell process for the login.
xt
发帖数: 17532
16
来自主题: Unix版 - Solaris问题:Login界面
现在有这么个问题:
我用Telnet到solaris机器上,用locale -a可以发现有日语的
charset。然后用Exceed联机,出现Xwindows的login界面,在
界面上的语言选项选择Japanese或者任何其他一种东亚语言,
发现login 界面的那些按键都没有字了;login进去后界面无法
启动。
谁知道这是什么问题?
多谢!
b****l
发帖数: 132
17
来自主题: Windows版 - 如何 block anonymous login
最近发现一台project的Windows XP PC, 被人anonymous login,导致program
shutdown, 一查security event, 发现是anonymous login。请问高手如何 block
anonymous login
r****t
发帖数: 10904
18
来自主题: _voip版 - gvoice login failed?
突然不能 login 了,网页 login 又没有问题。你们的呢?
# gvoice -b -e m****[email protected] -p wtfpasswd call 18664254745 1CALLBKNUMBER
3
Login failed.
http://code.google.com/p/pygooglevoice/issues/detail?id=58#c0
l****z
发帖数: 29846
19
如果大家继续遇到卑鄙无耻低下的人用密码不对几次就不能login的方法来攻击你的情况
, 可以考虑用类似cterm的软件来解决.
用Cterm的时候,那个密码不对几次就不能login的漏洞就不起作用了.
Cterm一般网上都能找到. 用起来虽然不是很方便, 但基本功能都有了.
好像没看到怎么封人的功能.
f**d
发帖数: 24
20
office 里面的自己平时工作用的计算机, 平时都是下班的时候直接走了, 让他自己l
ock, 不关机。 前几天, 早上上班突然发现计算机屏幕和我晚上下班时候不一样了。
后来自己在系统里面查了查, 在event viewer 里面的information 里面, 发现有人
从另外一个机子remote login 到 我的机子。 从6:30 pm 一直到停留到10点多。
经过这几天自己在底下的了解, 初步能判定是那个同事干的。
怎么办?
有没有啥东西能记录下来remote login , 以及在计算机里面的操作?
还有winxp下能不能给目录加保护,即使 administrator 也无法打开?
还有各位在research 的时候都是如何保护自己的idea 和data的?
我现在每天走的时候都是直接关机。 但是office 的钥匙是一把钥匙可以开所有的屋子
。 有没有啥办法?
我现在项目正在关键的时候。
多谢。
z****2
发帖数: 1618
21
来自主题: Money版 - One login for each amex card?
为了每张AMEX都能加上targeted amex offer, 是不是最好给每张AMEX卡都建一个login
account呢?
查了网上也有一个login, 然后多浏览器tab大法加offer的,不过貌似不是完全可靠。
如果是这样的话,那卡一多起来岂不是很麻烦,有什么推荐的小管理工具么?
p*******v
发帖数: 130
22
去年回国开了这两个行的账户,得到了两张ATM卡。 还有两个附件(一个好像叫银盾,
另一个好像叫U盾)。刚回来时建了online banking,好像还行。但今天就login不进去
了。又是要这个验证,又是要那个验证。关键是我回国时是用美国护照用岳母的手机开
的,现在岳母在这探亲,手机号都取消了,让我到那儿验证? 里面也没多少钱,但听
说国内银行账户好像要收费,就怕到时候还欠它钱,想login看一眼,也进不去。那两
个盾也不知道是干什么用的。为什么要弄的这么麻烦? 后悔当时开了这两个账户
b****p
发帖数: 3293
23
来自主题: Money版 - Global Entry Login 改了
申请Global Entry,还没schedule interview 呢. 今天才发现原来的GOES Login改了
。 要重新开一个Login.gov的账号吗, 能找到原来申请的Global Entry信息吗?
x***y
发帖数: 633
24
来自主题: Money版 - chase pay app can not login
网上用chase pay买过, 但是下载了chase pay app, 第一次Login要verification
code, 打电话过去输入后app 就一直是转圈的画面,重启手机后再login还是要
verification code. 有人遇到同样的情况吗?谢谢。
d*********e
发帖数: 8525
25
【 以下文字转载自 DC 俱乐部 】
发信人: neil222966 (neil222966), 信区: DC
标 题: 求助: DB Login error, web app cannot connect db.
发信站: BBS 未名空间站 (Wed Aug 15 13:41:36 2012, 美东)
求助:web application cannot connect db.
Environent:
sql server 2012 + IIS + php application
Error Message:
Can't connect to WebApp database. Reason: [Microsoft][ODBC SQL Server Driver
][SQL Server]Login failed for user 'WebAppConn'.
Info:
'WebAppConn' is a standard user in NT. It worked if using DB admin user (e.g
. 'sa').
Testing site:
sql serv... 阅读全帖
s*********s
发帖数: 193
26
我的是MB ALUMINUM UNIBODY的, 自从正版升级到SNOW LEOPARD后,已经出现2次在开机
进入LOGIN WINDOW的时
候,出现死机,鼠标可以移动,但是登录输入密码的框里没有闪动的光标,然后鼠标移到
BACK, LOGIN这些按钮时摁下也没有任
何反应,只好强制按电源键关机,再重新启动方能进入.
请问这里有人遇到过类似问题吗,如何解决,谢谢!!!
l*m
发帖数: 824
27
来自主题: BuildingWeb版 - help, on a simple login page
I want to build a simple web page that is used for my boss's class. There are
two simple requirement:
(1) The students and instructor should be login using different user name and
password.
(2) There should be a hit counter in the main page after login. I only want
the instructor to see this counter to check the access from students. Student
should NOT see the counter.
What is simplest way to implement these two requirement?
I just check the Javascript source code on the web. It looks like the
J
k***g
发帖数: 7244
28
来自主题: BuildingWeb版 - help, on a simple login page
Does your server support PHP+MySQL?

I want to build a simple web page that is used for my boss's class. There are
two simple requirement:
(1) The students and instructor should be login using different user name and
password.
(2) There should be a hit counter in the main page after login. I only want
the instructor to see this counter to check the access from students. Student
should NOT see the counter.
What is simplest way to implement these two requirement?
I just check the Javascript source
a***o
发帖数: 969
29
【 以下文字转载自 Linux 讨论区 】
发信人: amigo (阿米哥), 信区: Linux
标 题: 救命啊!vmware上的ubuntu空间被我用光了,重启后login不进去了
发信站: BBS 未名空间站 (Sat Apr 26 21:47:20 2008), 转信
里面有很多宝贵的数据,
怎么做才能增加ubuntu磁盘空间
让我login进去啊
试了add hard drive但是不work
l*****k
发帖数: 587
30
来自主题: Database版 - login to OEM from DBA studio
I created a user as admin after login as
system/manager
the user is also a local db DBA... but whenever
I try to login OEM server as that user from DBA studio, I
got "invalid credentials provided..."
please help, and I could not find such tutorials or from books..
thanks
l**u
发帖数: 35
31
来自主题: Database版 - anonymous login in mysql?
By default mysql allows local user (from localhost) to login
without password. These users can only use database "test".
I don't know how to disable it. An easy way is to delete
database "test", thus anonymous user can do few things.
Digging the manual of mysql, you might find way to disable
anonymous login.
m******t
发帖数: 4077
32
【 以下文字转载自 PDA 讨论区 】
发信人: marriott (marriott), 信区: PDA
标 题: 有人知道微软这个login到底怎么回事?
发信站: BBS 未名空间站 (Tue Jun 11 10:07:23 2013, 美东)
不管是hotmail还是skydrive,每次login都说
You've tried to sign in too many times with an incorrect email address or
password.
其实密码是正确的,一定要再输入一次,并且输入验证码才能登陆。
google了一下,微软的support只知道要reset account,这个根本没有用。
x**8
发帖数: 1165
33
找了群晖 5.2 的DSM image, 装在一台mini-itx上。
boot到updgrade/installation 开始以后停在了这一步:
要求 diskstation login:
不明白了,安装不就是建立diskstation 吗? 刚开始安装怎么会有login呢?
这个prompt 也没法输入,键盘没反应。该怎么办呢?
s******e
发帖数: 63
34
来自主题: Java版 - 模拟LOGIN用哪个LIBRARY好?
如果我要用JAVA模拟LOGIN进某个SITE,留着SESSION COOKIE以便ACCSS后面的这个SITE
的其他PAGE(比如LOGIN进我的EBAY帐号,再看我的LISTING啥的),用哪个LIBRARY好?
很多年前用过HTTPCLIENT,现在还是这个最好吗?谢了。

H*******e
发帖数: 37
35
来自主题: Programming版 - how to login mitbbs with java code (转载)
【 以下文字转载自 Java 讨论区 】
发信人: HelloHere (Hello Here), 信区: Java
标 题: how to login mitbbs with java code
发信站: BBS 未名空间站 (Sat Sep 22 20:08:25 2007)
Any one has idea how to deal with the passwd?
I passed my password as text, it always says not right. Do I need some
encoding. Or what encoding is used in mitbbs?
This is just for exercise.
/*
{
target="_top">
账号
a***o
发帖数: 969
36
【 以下文字转载自 Linux 讨论区 】
发信人: amigo (阿米哥), 信区: Linux
标 题: 救命啊!vmware上的ubuntu空间被我用光了,重启后login不进去了
发信站: BBS 未名空间站 (Sat Apr 26 21:47:20 2008), 转信
里面有很多宝贵的数据,
怎么做才能增加ubuntu磁盘空间
让我login进去啊
试了add hard drive但是不work
W***o
发帖数: 6519
37
来自主题: Programming版 - 怎么track user login session 比较好?
在用java做一个简单的user log in,用户登录以后可以访问一些页面,这些页面需要
check 这个用户是否 logged in。 目前我有下面的想法(pseudo code):
void login(username, password)
{
if (username == db.user.username && password == db.user.password)
username.session = startSession(username);
else
response.redirect("/login");
}
String startSession(String username)
{
String sessionID = encoder.encode(randomBytes, username); /* generates
a random session id*/
mysql.session_table.insert(username, sessionID); /... 阅读全帖
s*****w
发帖数: 1527
38
不是从regular webpage login, 而是有些人吃饱了撑的要从chrome extension login,
请问如何使用passport.js ?
是不是pop up一个小窗口,输入user/password ?
c**t
发帖数: 2744
39
来自主题: Security版 - How to overwrite "/bin/login"?
My computer was tampered. I found the size of /bin/login is
very large.
ls -l /bin/login
-rwxr--r-- 1 root root 279484 ...
I want to overwrite it, even if I do so under "single user
mode", still fail.
Who can tell me how to remove or replace it?
b****l
发帖数: 132
40
来自主题: Security版 - 如何 block anonymous login
最近发现一台project的Windows XP PC, 本来一直运行着program,最近发生了account
突然logout,导致program shutdown, 一查security event, 发现是有anonymous
login后,导致运行着program的account被logout。请问高手如何 block anonymous
login
security event ID: 540
c**t
发帖数: 2744
41
Tell me the result of 'ls -l /bin/login' (RH6, or RH6.2)
My result: (RH6.2)
ls -l /bin/login
-rwxr--r-- 1 root root 279484 ....
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)