修改 url 缩短脚本
我一直在使用 Johnboy URL Shortner ,我注意到它没有检查并查看它生成的 URL 是否存在于数据库中。如何确保 URL 是唯一的>
I've been using Johnboy URL shortner and I noticed it doesn't check and see if the URL that it generates exists in the database. How could I ensure that the URL is unique>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
为长或长创建唯一索引/约束短网址或两者。当脚本尝试插入具有相同值的另一条记录时,INSERT 语句将失败并显示 特定错误代码,您可以对其进行测试并进行适当处理。
Create a unique index/constraint for the long or the short url or both. When the script tries to insert another record with the same values the INSERT statement will fail with a specific error code which you can test for and handle appropriately.
看起来 johnboy 的脚本充满了漏洞……但是,开始吧! (修改了index.php脚本,计算新的短网址)
Seems like johnboy's script is full of vulnerabilities...but here ya go! (modified index.php script where it calculates the new short url)
数据库表如下所示:
主键是一个自动递增的整数,在应用程序中的任何地方都不使用。您可以删除它并使用
url_short
作为主键。然后,在插入新内容时,您可以执行以下三件事之一:INSERT
并检查错误代码:如果是1062,则它是一个骗局。我会选择#3。
但是,考虑到它使用
addslashes()
将输入参数注入到 SQL 中,我完全避免使用此脚本。它看起来很过时且不安全。The DB table looks like this:
The primary key is a auto-incremented integer that is not used anywhere across the app. You can just get rid of it and use
url_short
as primary key. You can then do one of three things when inserting new stuff:INSERT
and check the error code: if 1062, it's a dupe.I'd go for #3.
However, considering that it uses
addslashes()
to inject input parameters into SQL I'd just avoid using this script at all. It looks way obsolete and insecure.只需将
UNIQUE
添加到数据库列url_link
即可。Simply adding
UNIQUE
to the database columnurl_link
should do.您可以使用外键约束来确保数据库级别的唯一 URL。然后,在 php 中,检查查询是否插入了一行 - 如果是这样,那么您就知道已插入一个唯一的 url,如果没有,则给用户或脚本一个使用新字符串再次尝试的机会。
you could use foreign key constraints to ensure unique urls at the database level. Then, in the php, check that the query inserted a row - if so, then you know a unique url has been inserted, if not, then give the user or script a chance to try it again with a new string.