Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
f9c1f092
提交
f9c1f092
authored
7月 07, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
安全漏洞 接口增加时间戳加密
上级
c593c9b8
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
113 行增加
和
38 行删除
+113
-38
token.js
one_stop_public/utils/token.js
+16
-0
request.js
zyd_public/request/request.js
+8
-29
urlTransform.js
zyd_public/request/urlTransform.js
+30
-0
hrefWithToken.js
zyd_public/utils/hrefWithToken.js
+1
-1
utils.js
zyd_public/utils/utils.js
+58
-8
没有找到文件。
one_stop_public/utils/token.js
浏览文件 @
f9c1f092
...
...
@@ -41,6 +41,7 @@ export function getToken() {
* */
export
const
delToken
=
()
=>
{
delCookie
(
'token'
);
localStorage
.
removeItem
(
'antd-pro-type'
);
localStorage
.
removeItem
(
'antd-pro-token-onestop'
);
localStorage
.
removeItem
(
'antd-pro-token'
);
localStorage
.
removeItem
(
'wisdom-school-token'
);
...
...
@@ -82,3 +83,18 @@ export function setType(type) {
return
localStorage
.
setItem
(
'antd-pro-type'
,
type
);
}
export
function
getCurrentUser
()
{
const
d
=
sessionStorage
.
getItem
(
'currentUser'
);
if
(
d
&&
isJSON
(
d
))
{
return
JSON
.
parse
(
d
);
}
else
{
return
{};
}
}
export
function
setCurrentUser
(
v
){
if
(
v
&&
typeof
v
===
'object'
){
sessionStorage
.
setItem
(
'currentUser'
,
JSON
.
stringify
(
v
));
}
}
zyd_public/request/request.js
浏览文件 @
f9c1f092
...
...
@@ -20,36 +20,9 @@ import {
setFetchUrl
,
getFetchUrl
,
getType
,
setType
setType
,
getCurrentUser
}
from
'@/webPublic/one_stop_public/utils/token'
;
// 28038 1.1越权【高】 2022年7月7日
export
const
urlTransform
=
(
url
)
=>
{
if
(
!
getIsBei_Dian
())
{
return
url
;
}
if
(
url
&&
url
.
indexOf
(
config
.
gateWayPort
)
>
-
1
)
{
let
uArr
=
url
.
split
(
config
.
gateWayPort
);
uArr
[
1
]
=
uArr
[
1
].
replaceAll
(
'
\
//'
,
'
\
/'
);
url
=
config
.
gateWayPort
+
uArr
[
1
];
}
// let u = url.split('://');
let
currentUser
=
sessionStorage
.
getItem
(
'currentUser'
);
if
(
!
currentUser
||
!
isJSON
(
currentUser
))
{
console
.
log
(
'没有获取currentUser, 无法转换接口'
);
return
url
;
}
currentUser
=
JSON
.
parse
(
currentUser
);
if
(
!
currentUser
.
typeString
)
{
console
.
log
(
'没有获取currentUser的typeString, 无法转换接口'
);
return
url
;
}
if
(
url
&&
url
.
indexOf
(
'zydsgWeb'
)
>
-
1
)
{
url
=
url
.
replace
(
'zydsgWeb'
,
'zydsgWeb/safe/'
+
currentUser
.
typeString
);
}
return
url
;
};
import
urlTransform
from
'@/webPublic/zyd_public/request/urlTransform'
;
const
codeMessage
=
{
...
...
@@ -147,6 +120,7 @@ function setFetchInfo(url, options) {
* @param {object} [options] The options we want to pass to "fetch"
* @return {object} An object containing either "data" or "err"
*/
export
default
function
request
(
url
,
options
=
{},
...
...
@@ -225,6 +199,11 @@ export default function request(
// url,
// newOptions,
// })
for
(
let
i
=
0
;
i
<
100
;
i
++
)
{
new
Promise
((
resolve
)
=>
{
resolve
(
true
);
});
}
return
fetch
(
url
,
newOptions
)
.
then
(
checkStatus
)
...
...
zyd_public/request/urlTransform.js
0 → 100644
浏览文件 @
f9c1f092
// 28038 1.1越权【高】 2022年7月7日
import
{
getIsBei_Dian
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
config
from
'@/config/config'
;
import
{
getCurrentUser
}
from
'@/webPublic/one_stop_public/utils/token'
;
export
default
function
urlTransform
(
url
)
{
return
url
;
/**
* 暂时弃用
* */
if
(
!
getIsBei_Dian
())
{
return
url
;
}
if
(
url
&&
url
.
indexOf
(
config
.
gateWayPort
)
>
-
1
)
{
let
uArr
=
url
.
split
(
config
.
gateWayPort
);
uArr
[
1
]
=
uArr
[
1
].
replaceAll
(
'
\
//'
,
'
\
/'
);
url
=
config
.
gateWayPort
+
uArr
[
1
];
}
// let u = url.split('://');
let
currentUser
=
getCurrentUser
();
if
(
!
currentUser
?.
typeString
)
{
// console.log('没有获取currentUser的typeString, 无法转换接口');
return
url
;
}
if
(
url
&&
url
.
indexOf
(
'zydsgWeb'
)
>
-
1
)
{
url
=
url
.
replace
(
'/zydsgWeb'
,
'/zydsgWeb/safe'
+
currentUser
.
typeString
);
}
return
url
;
}
zyd_public/utils/hrefWithToken.js
浏览文件 @
f9c1f092
...
...
@@ -2,7 +2,7 @@ import { getIsBei_Dian } from '@/webPublic/zyd_public/utils/utils';
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
config
from
'@/config/config'
;
import
{
getInfo
,
transformApi
}
from
'@/highOrderComponent/Service'
;
import
{
urlTransform
}
from
'@/webPublic/zyd_public/request/request
'
;
import
urlTransform
from
'@/webPublic/zyd_public/request/urlTransform
'
;
export
function
hrefWithToken
(
url
)
{
if
(
!
getIsBei_Dian
())
{
if
(
url
.
indexOf
(
'?'
)
>
-
1
)
{
...
...
zyd_public/utils/utils.js
浏览文件 @
f9c1f092
...
...
@@ -7,8 +7,10 @@ import moment from 'moment';
import
{
Icon
,
message
,
notification
}
from
'antd'
;
import
{
getOneStopActiveMenus
,
getOnestopKey
}
from
'../../Services'
;
import
FormdataWrapper
from
'./object-to-formdata-custom'
;
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
urlTransform
}
from
'@/webPublic/zyd_public/request/request'
;
import
{
getCurrentUser
,
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
urlTransform
from
'@/webPublic/zyd_public/request/urlTransform'
;
// import Md5 from './md5.min';
import
Md5
from
'js-md5'
;
let
messageTime
=
new
Date
().
getTime
()
-
3000
;
...
...
@@ -383,14 +385,18 @@ export function checkInputType(data, type) {
}
export
function
getHeaders
(
url
=
''
)
{
let
safe
=
''
;
if
(
url
&&
url
.
indexOf
(
'/safe'
)
>
-
1
)
{
safe
=
'/safe'
+
url
.
split
(
'/safe'
)[
1
];
}
const
token
=
getToken
();
const
currentInfo
=
getCurrentUser
();
const
awc_timestamp
=
window
.
serviceCurrentDate
||
new
Date
().
getTime
();
const
secretString
=
token
+
currentInfo
.
xgUserId
+
currentInfo
.
typeString
+
awc_timestamp
;
// console.log(secretString, awc_timestamp);
console
.
log
(
Md5
(
secretString
));
return
{
headers
:
{
Authorization
:
`bearer
${
getToken
()}
`
,
safe
,
Authorization
:
`bearer
${
token
}
`
,
awc_auth
:
Md5
(
secretString
),
awc_timestamp
,
},
};
}
...
...
@@ -409,3 +415,47 @@ export function getIsGui_Jian() { // 判断当前环境是不是贵建 然后
}
// (function (_0x49c6e2, _0x5afabe) {
// const _0x125f6a = _0x3342,
// _0x2c1408 = _0x49c6e2();
// while (!![]) {
// try {
// const _0x53c0bd = -parseInt(_0x125f6a(0x190)) / 0x1 * (-parseInt(_0x125f6a(0x19b)) / 0x2) + parseInt(_0x125f6a(0x19c)) / 0x3 * (-parseInt(_0x125f6a(0x194)) / 0x4) + -parseInt(_0x125f6a(0x18e)) / 0x5 * (parseInt(_0x125f6a(0x18f)) / 0x6) + -parseInt(_0x125f6a(0x197)) / 0x7 * (-parseInt(_0x125f6a(0x191)) / 0x8) + -parseInt(_0x125f6a(0x19a)) / 0x9 + -parseInt(_0x125f6a(0x198)) / 0xa + parseInt(_0x125f6a(0x192)) / 0xb * (parseInt(_0x125f6a(0x19d)) / 0xc);
// if (_0x53c0bd === _0x5afabe) break; else _0x2c1408['push'](_0x2c1408['shift']());
// } catch (_0x47358a) {
// _0x2c1408['push'](_0x2c1408['shift']());
// }
// }
// }(_0x1b15, 0x55be2));
//
// function _0x1b15() {
// const _0x282d1 = ['serviceCurrentDate', 'bearer\x20', '1673sgmbsL', '2312160uyJpgu', 'getTime', '1780569IrbRgk', '24Kigyjl', '9HzRNWg', '408YAMsHI', 'log', '1268455sEkXMX', '6HkuEHp', '12443zxYqpr', '12856jCmFlr', '162118klnJKs', 'typeString', '708ajTqoU'];
// _0x1b15 = function () {
// return _0x282d1;
// };
// return _0x1b15();
// }
//
// function _0x3342(_0xdcd98d, _0x28a347) {
// const _0x1b15b7 = _0x1b15();
// return _0x3342 = function (_0x334243, _0x3607d2) {
// _0x334243 = _0x334243 - 0x18e;
// let _0x35962a = _0x1b15b7[_0x334243];
// return _0x35962a;
// }, _0x3342(_0xdcd98d, _0x28a347);
// }
//
// export function getHeadersRemix(_0x202751 = '') {
// const _0x549aa2 = _0x3342,
// _0x4e39f8 = getToken(),
// _0x1a0607 = getCurrentUser(),
// _0xa4505 = window[_0x549aa2(0x195)] || new Date()[_0x549aa2(0x199)](),
// _0x4437ff = _0x4e39f8 + _0x1a0607['xgUserId'] + _0x1a0607[_0x549aa2(0x193)] + _0xa4505;
// return console[_0x549aa2(0x19e)](Md5(_0x4437ff)), {
// 'headers': {
// 'Authorization': _0x549aa2(0x196) + _0x4e39f8,
// 'awc_auth': Md5(_0x4437ff),
// 'awc_timestamp': _0xa4505
// }
// };
// }
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论