js를 사용하여 Tinder에서 누가 당신을 좋아했는지 노출
3465 단어 javascriptchrome
https://thenextweb.com/apps/2020/03/04/its-painfully-easy-to-see-whos-liked-you-on-tinder-without-paying-for-gold/
기사에 따르면 Tinder는 CSS
filter: blur(12px;)
를 사용하고 있습니다.마스킹된 이미지를 생성하려면 약간의 작업이 필요하기 때문에 이것은 웹 애플리케이션에 완전히 의미가 있습니다.
웹 앱을 확인하고 Tinder가
react
를 사용하고 있으며 Who's Liked 페이지에 직접 액세스하는 것을 방지한다는 것을 알았습니다.Developer Tools
const getPiclinks = () => {
const all = document.querySelectorAll(".StretchedBox");
const start = all.length/2; // divide by 2 because StretchedBox class is also used by the div in the side bar
const end = all.length;
for(let i=start; i<end; i++) {
const url = all[i].style.cssText.replace('background-image: url("', '').replace(")", '');
console.log(url);
}
}
콘솔에
getPiclinks
입력이미지에 대한 링크가 표시됩니다.
Reference
이 문제에 관하여(js를 사용하여 Tinder에서 누가 당신을 좋아했는지 노출), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/0xkoji/expose-who-s-liked-you-on-tinder-with-js-1i41텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)