Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Wordpress wp-json v2
អ្វីដែលបានរៀបចំ និងធ្វើឡើង
Constructor [domain, obj]. obj មានទិន្ន័យដូចជា per_page ត្រូវបានកំណត់ចំនួនស្រាប់ 10 ប្រសិនបើ per_page ធំជាង 100 គឺយកតម្លៃត្រឹម 100 ប៉ុណ្ណោះ api default wp-json. យើងក៏អាចផ្លាស់ប្ដូរប្រើ ?rest_route=
Recent Post [recent] (page, per_page). ដើម្បីទាញយកព័ត៌មានដែលបាន Post ចុងក្រោយ page ត្រូវបានកំណត់ចំនួនស្រាប់ 1 per_page ធ្វើការយកពី obj Constructor ឬចំនួនស្រាប់ 10 return {status: true, data: []}
Category [categories] (page, per_page). ដើម្បីទាញយកព័ត៌មានដែលបាន Categories ទាំងអស់
Category [category] (id, page, per_page). ដើម្បីទាញយកព័ត៌មានដែលបាន Post ពី Category id គឺជា id របស់ Category ដែលត្រូវធ្វើការទាញយក page ត្រូវបានកំណត់ចំនួនស្រាប់ 1 per_page ធ្វើការយកពី obj Constructor ឬចំនួនស្រាប់ 10 return {status: true, data: []}
Post (id). ដើម្បីទាញយកព័ត៌មានណាមួយតាមរយៈ id Post return {status: true, data: {}}
tags [tags] (page, per_page). ដើម្បីទាញយកព័ត៌មានដែលបាន tags ទាំងអស់
tag [tag] (id, page, per_page). ដើម្បីទាញយកព័ត៌មានដែលបាន Post ពី tag id គឺជា id របស់ Tag ដែលត្រូវធ្វើការទាញយក អ្នកអាចធ្វើការជ្រើសរើសបានច្រើនក្នុងពេលតែមានតាមរយៈ [,]. ex. 7,1 page ត្រូវបានកំណត់ចំនួនស្រាប់ 1 per_page ធ្វើការយកពី obj Constructor ឬចំនួនស្រាប់ 10 return {status: true, data: []}
counter (id) ស្រាប់បង្កើតចំនួនអ្នកបានអានរួច View ទៅលើ Custom Field: post_views_count ប៉ុន្តែការប្រើប្រាស់អាចប្រើបានជាមួយ td_ajax_update_views របស់ WP Theme Newspaper ប៉ុណ្ណោះ
Go to your app's main directory and run:
npm install wp-json -S
Get Recent Post
import WPAPI from "wp-json";
async function run1() {
const wpJson = new WPAPI("postnews.com.kh");
const res = await wpJson.recent(1, 20).then(res => { return res; });
};
run1();
Get Category
import WPAPI from "wp-json";
async function run1() {
const wpJson = new WPAPI("postnews.com.kh");
const res = await wpJson.category(8, 1, 20).then(res => { return res; });
};
run1();
Get Post ID
import WPAPI from "wp-json";
async function run1() {
const wpJson = new WPAPI("postnews.com.kh");
const res = await wpJson.post(359619).then(res => { return res; });
};
run1();
Get Post by Tag
import WPAPI from "wp-json";
async function run1() {
const wpJson = new WPAPI("postnews.com.kh");
const res = await wpJson.tag("429", 1, 20).then(res => { return res; });
};
run1();
Get Post by multi tags
import WPAPI from "wp-json";
async function run1() {
const wpJson = new WPAPI("postnews.com.kh");
const res = await wpJson.tags([429,618], 1, 20).then(res => { return res; });
};
run1();
Get Search
import WPAPI from "wp-json";
async function run1() {
const wpJson = new WPAPI("postnews.com.kh");
const res = await wpJson.search("search text", 1, 20).then(res => { return res; });
};
run1();
ការងារមួយនេះគឺខ្ញុំចង់ចែករំលែកការងារដែលធ្លាប់បានធ្វើហើយ និងសាកបង្កើតជា dependency មួយឡើង និងប្រើប្រាស់ github។
ការប្រើប្រាស់នៅក្នុង github ខ្ញុំមិនទាន់ចេះប្រើទេ ហើយក៏ចេះតែ commit ទៅតាមចិត្តចង់ ឬពេលវេលា។ ហេតុនេះហើយបើខ្ញុំសរសេរមានបញ្ហា បើមាននោះសូមជួយកែសម្រួលផង
FAQs
WP-JSON API
The npm package wp-json receives a total of 128 weekly downloads. As such, wp-json popularity was classified as not popular.
We found that wp-json demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.